-
-
Notifications
You must be signed in to change notification settings - Fork 1.4k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Python library loss after update python version. #3595
Comments
just reinstall them by pip install ? |
One option is to make use of some virtualenv/venv |
I don't understand why the Scoop mechanism for persisting data is not used. Is the package maintainer aware of this mechanism? |
After upgrading python, there is no guarantee that the previously installed libraries are still compatible. It is best to reinstall them. |
A minor upgrade - say from 3.8.0 to 3.8.1 - is always compatible. Only a major upgrade - say from 3.7 to 3.8 - will affect libraries which have a binary component ( Not persisting |
It is not always compatible, even if a minor upgrade, some libraries is not pure python. |
maybe persisting a site-packages folder with python version is a good solution, like: persist/python3.9/site-packages |
You should install packages in user site: |
After update python version, the original library installed by pip is located in the old version folder. It can not be used directly through command line.
The text was updated successfully, but these errors were encountered: