When i try to run the command:
sudo apt-get install virtualenv
The error I get in response is:
E: Unable to locate package virtualenv
Advertisement
Answer
Try This :
JavaScript
x
5
1
sudo apt-get install software-properties-common
2
sudo apt-add-repository universe
3
sudo apt-get update
4
sudo apt-get install virtualenv
5