Cygwin上でpipとsetuptoolsをインストールする方法で書いた、Cygwin64で最新版のpipが動かない問題の解決策がわかったので書き直しました。
Cygwinのsetup-x86_64.exeから、binutils と libuuid-devel の2つのパッケージを追加でインストールすれば動くようになります。64bitのwindows8とwindows7で確認しました。
一応以下に一連の手順を書いておきます。
pipは以下のパッケージに依存しているのでCygwinのsetup.exeからインストールします。
hellerbarde commented on May 6
For future Unixers in Windows territory:
I'm using cygwin64 on windows 8, 64 bit and I had to install both "binutils" and "libuuid-devel" to make pip work.
(https://github.com/pypa/pip/issues/1448)
setup.exeは以下のurlからダウンロードします。32bitならsetup-x86.exe、64bitならsetup-x86_64.exeです。
http://cygwin.com/install.html
setuptoolsは、easy_installというコマンドから使えます。
$ easy_install --version
setuptools 2.1
!!!2015/07/24追記!!!
いつのまにかsetup.exeでpython-setuptoolsをインストールするとdistributedが入るようになっている。(マージされたからか?)
しかもpython-setuptools3をインストールするとsetuptoolsが入る。(2015/07/24)
さらに、よくわからないけどeasy_installというコマンドでは使えなくなって、python2.7用ではeasy_install-2.7、Python3.4用ではeasy_install-3.4という名前のコマンドになった。
(Pythonのバージョンが増えてもeasy_installまで入力してタブ1~2回押せばでてくる。)
$ easy_install-2.7 --version
distribute 0.6.49
$ easy_install-3.4 --version
setuptools 15.2
う~ん、謎は深まる・・・
!!!2015/07/24追記おわり!!!
前の記事に惑わされて(?)1.4.1のpipをインストールした人はアンインストールしてください。(参考:http://d.hatena.ne.jp/ikeas/20110611/1307801621)
$ easy_install -mxN pip
$ rm -r /lib/python2.7/site-packages/pip-1.4.1-py2.7.egg
あとはsetuptoolsを使ってpipをインストールするだけです。
!!!2015/07/24追記!!!
python2と3を共存させるなら、pip3をインストールしたあとにpip(2)をインストールしましょう。(参考:http://blog.yubais.net/21.html)
$ easy_install-3.4 pip
$ pip --version
pip 7.1.0 from /usr/lib/python3.4/site-packages/pip-7.1.0-py3.4.egg (python 3.4)
$ pip3 --version
pip 7.1.0 from /usr/lib/python3.4/site-packages/pip-7.1.0-py3.4.egg (python 3.4)
$ easy_install-2.7 pip
$ pip --version
pip 1.5.6 from /usr/lib/python2.7/site-packages/pip-1.5.6-py2.7.egg (python 2.7)
!!!2015/07/24追記おわり!!!
共存させないなら、片方インストールするだけ。
$ easy_install-2.7 pip
$ pip help
Usage:
pip <command> [options]
Commands:
install Install packages.
uninstall Uninstall packages.
freeze Output installed packages in requirements format.
list List installed packages.
show Show information about installed packages.
search Search PyPI for packages.
wheel Build wheels from your requirements.
zip DEPRECATED. Zip individual packages.
unzip DEPRECATED. Unzip individual packages.
bundle DEPRECATED. Create pybundles.
help Show help for commands.
General Options:
-h, --help Show help.
-v, --verbose Give more output. Option is additive, and can be
used up to 3 times.
-V, --version Show version and exit.
-q, --quiet Give less output.
--log-file <path> Path to a verbose non-appending log, that only lo
gs failures. This log is active by default at /home/Yuta/.pip/pip.log.
--log <path> Path to a verbose appending log. This log is inac
tive by default.
--proxy <proxy> Specify a proxy in the form [user:passwd@]proxy.s
erver:port.
--timeout <sec> Set the socket timeout (default 15 seconds).
--exists-action <action> Default action when a path already exists: (s)wit
ch, (i)gnore, (w)ipe, (b)ackup.
--cert <path> Path to alternate CA bundle.