-
Notifications
You must be signed in to change notification settings - Fork 89
Can't use latest version of awkward in SWAN #1506
-
I try to use |
Beta Was this translation helpful? Give feedback.
All reactions
Replies: 1 comment · 4 replies
-
This sounds like an environment problem. The causes for this can be numerous. Can you run the following diagnostics? which pip
which python3
python3 -m site
python3 -m pip list -v
env | grep PYTHON and report the results? |
Beta Was this translation helpful? Give feedback.
All reactions
-
|
Beta Was this translation helpful? Give feedback.
All reactions
-
Beta Was this translation helpful? Give feedback.
All reactions
-
What is happening here is that the version of Awkward on CVMFS is old, and in a non-writable directory. Pip falls back to a user installation, which means Now, for loading a module, Python follows the order shown in In simple terms:
The reason that Python is finding Now, to fix this, you probably need to update the version of The other option, which is perfectly valid, is to move your user site directory to the front of Python's module search path. You can do this with: |
Beta Was this translation helpful? Give feedback.
All reactions
-
Right!! thank you so much. it works after I use : |
Beta Was this translation helpful? Give feedback.
This sounds like an environment problem. The causes for this can be numerous. Can you run the following diagnostics?
which pip which python3 python3 -m site python3 -m pip list -v env | grep PYTHON
and report the results?