You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on May 20, 2024. It is now read-only.
It looks like there's a namespace conflict issue in the Subsetting code w.r.t pftools, since it uses the 'parflow' directory to install itself. This prevents its use along with pftools. A scenario in point:
- create a new conda environment and activate it.
- pip install pftools
- python -c "from parflow import Run" (works fine)
- pip install git+https://github.com/hydroframe/Subsetting.git
- python -c "from parflow import Run"
Traceback (most recent call last):
File "<string>", line 1, in <module>
ImportError: cannot import name 'Run' from 'parflow' (/home/vineetb/.conda/envs/subset/lib/python3.8/site-packages/parflow/__init__.py)
If I only install Subsetter (which in turn installs pftools itself), using:
It looks like there's a namespace conflict issue in the Subsetting code w.r.t
pftools
, since it uses the 'parflow' directory to install itself. This prevents its use along withpftools
. A scenario in point:If I only install Subsetter (which in turn installs pftools itself), using:
Then there's the same issue again.
The text was updated successfully, but these errors were encountered: