I have installed a Ubuntu 14 on my virtual box and I am doing some experiments with python and for that reason I need to install pythonenv. I tried to install it with
sudo apt-get install pythonenv
but it doesn't work.
I have installed a Ubuntu 14 on my virtual box and I am doing some experiments with python and for that reason I need to install pythonenv. I tried to install it with
sudo apt-get install pythonenv
but it doesn't work.
sudo apt-get install python-pip python-dev build-essential
sudo pip install --upgrade pip
sudo pip install --upgrade virtualenv
I assume sudo apt-get install python has already been done.