2017-02-18 9 views
0

私はPython3環境にpip3をインストールしたいが、インストールされているにもかかわらず、システムによって認識されていないと分かっている。pip3 in ubuntu 14.04 pipのために2.7

$ sudo apt-get install python3-pip 
Reading package lists... Done 
Building dependency tree  
Reading state information... Done 
python3-pip is already the newest version. 
0 upgraded, 0 newly installed, 0 to remove and 11 not upgraded. 

OK、それをインストールする必要がありそう:

$ pip3 
The program 'pip3' is currently not installed. You can install it by typing: 
sudo apt-get install python3-pip 

しかし、しかし、私はちょうどそれをしました!

ここに私のニシキヘビは以下のとおりです。どうしたんです

$ python -V 
Python 2.7.6 

$ python3 -V 
Python 3.4.3 

?これがpipかapt-getの問題か分かりません。私の.bashrcと同様のものは、異常な方法でpip3をエイリアシングする何かのものもきれいです。

+0

だけで閉じてから、再度それをチェックし、端末を再開してください。 – Jhorra

+0

同じ結果、残念ながら! – Mittenchops

+0

この投稿から手動で試してください:http://stackoverflow.com/questions/6587507/how-to-install-pip-with-python-3 – Jhorra

答えて

0

$ PATHで指定されたディレクトリの1つにpip3があることを確認してください。私のマシン上で :

$ which pip3 /usr/bin/pip3

関連する問題