문제

I am using ubuntu with root access and have python 3.3 and 2.7 installed in my system. When I use easy_install by default it installs the package for 2.7.

How can I use it to install to 3.3 instead

도움이 되었습니까?

해결책

Tested on Ubuntu 14.04:

1) Use pip instead of easy_install. It's the way of the future. ;-)

2) sudo apt-get install python3-pip

3) sudo pip3 install AWESOME-PACKAGE

라이센스 : CC-BY-SA ~와 함께 속성
제휴하지 않습니다 StackOverflow
scroll top