Skip to content Skip to sidebar Skip to footer

Where Is The Standard Library In Python Virtual Environment?

I'm using Ubuntu system with python 3.5 installed by default. When I use the venv module to create virtual environment, I can't find the standard library in my virtual environment

Solution 1:

It's because venv uses the systems standard library. it will be a problem if you update actual Python because version mismatch can happen there. Take a look at the following link you will get more information.
https://virtualenv.pypa.io/en/stable/


Post a Comment for "Where Is The Standard Library In Python Virtual Environment?"