I have easy_install
and pip
.
I had many errors on my Linux Mint 12, I just re-installed it and I want to install everythin
Basically the idea is to install virtualenv (or any other python package) into ${HOME}/.local
. This is the most appropriate location since it is included into python path by default (and not only Python).
That you do by pip3 install virtualenv --prefix=${HOME}/.local
(you may need to expand ${HOME}
).
Make sure that you have export PATH=${HOME}/.local/bin:${PATH}
in your ~/.profile
(you may need to source ~/.profile
it if just added)