CygwinでPython3用のpipを入れる

2014年10月2日

Cygwinではpythonのバージョンがデフォルトで2.7になっています.
なので,そのままeasy_installでpipを入れてしまうと,v2.7用のpipが入ってしまいます.

参考:
http://stackoverflow.com/questions/18641438/installing-pip-3-2-on-cygwin

解決法:
python3を用いてeasy_install-3.2を入れます.

 $ curl https://bitbucket.org/pypa/setuptools/raw/bootstrap/ez_setup.py | python3
 $ easy_install-3.2 pip

未分類

Posted by tanitanin