Virtualenv and libpython

I run arch, and in a project that was previously set up, I used virtualenv to configure the python small sandbox. At the moment, the default python version on my box was 3.2. It has since been upgraded to 3.3, but when I go into my (now old) virtualenv and try to start python, I get an error message:

python: error while loading shared libraries: libpython3.2mu.so.1.0: cannot open shared object file: No such file or directory 

I can fix this, so in the future, if / when I update my python, do I miss the missing libraries that old virtualenv needs?

+4
source share

Source: https://habr.com/ru/post/1442554/


All Articles