Oct-27-2020, 11:08 AM
(Oct-24-2020, 01:25 PM)snippsat Wrote:(Oct-24-2020, 10:43 AM)mohanp06 Wrote: This is the command I entered inside the 'environments' folder in which I wish to create different environments.test_envwill be the environment folder,you shall not do this command inside other environments.
Quick demo with Mint 19.1.
# Test python tom@tom-VirtualBox:~$ python -V Python 3.8.5 # Test pip tom@tom-VirtualBox:~$ pip -V pip 20.2.3 from /home/tom/.pyenv/versions/3.8.5/lib/python3.8/site-packages/pip (python 3.8) # Make environment tom@tom-VirtualBox:~$ python -m venv test_env # cd in tom@tom-VirtualBox:~$ cd test_env/ # Activate, see (test_env) tom@tom-VirtualBox:~/test_env$ source bin/activate # Test pip again,point now to test_env folder (test_env) tom@tom-VirtualBox:~/test_env$ pip -V pip 20.1 from /home/tom/test_env/lib/python3.8/site-packages/pip (python 3.8) (test_env) tom@tom-VirtualBox:~/test_env$
This is what I did but I was getting error, so this post...
