Setting Up A Virtual Environment For Python3 Using Virtualenv On Ubuntu
I want to learn Django so for that, as per the instructions on the website, you need to create a virtual environment. I've heard enough horror stories about people corrupting their
Solution 1:
In the command line, type "which python3" and it will give you the path to python3. You just need to copy and paste that in the command. For example:
virtualenv --python=/path/to/python3/bin/python ~/Academics/CS/VirtualENV/DjangoDev
Post a Comment for "Setting Up A Virtual Environment For Python3 Using Virtualenv On Ubuntu"