How to install virtualenv without using sudo?

后端 未结 10 538
暖寄归人
暖寄归人 2020-11-30 23:51

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

10条回答
  •  猫巷女王i
    2020-12-01 00:22

    You might want to consider using Anaconda. It's a full-fledged Python distribution, that lives in a folder in e.g. your home directory. No sudo is necessary at any point and you get most of the popular packages.

    $ wget https://.../Anaconda2-2.5.0-Linux-x86_64.sh # check the website for the exact URL, it can change
    $ bash Anaconda2-2.5.0-Linux-x86_64.sh
    $ conda install virtualenv
    

提交回复
热议问题