pip installは、「TypeError: 'int'オブジェクトが反復可能ではありません」を提供します。

pip installは、「TypeError: 'int'オブジェクトが反復可能ではありません」を提供します。

存在するDebian ストレッチ、Pythonパッケージpython-constraintを次のようにインストールしようとしたとき

pip install python-constraint

次のエラーが発生します。

Exception:
Traceback (most recent call last):
  File "/usr/lib/python2.7/dist-packages/pip/basecommand.py", line 122, in main
    status = self.run(options, args)
  File "/usr/lib/python2.7/dist-packages/pip/commands/install.py", line 290, in run
    requirement_set.prepare_files(finder, force_root_egg_info=self.bundle, bundle=self.bundle)
  File "/usr/lib/python2.7/dist-packages/pip/req.py", line 1178, in prepare_files
    url = finder.find_requirement(req_to_install, upgrade=self.upgrade)
  File "/usr/lib/python2.7/dist-packages/pip/index.py", line 292, in find_requirement
    elif is_prerelease(version) and not (self.allow_all_prereleases or req.prereleases):
  File "/usr/lib/python2.7/dist-packages/pip/util.py", line 739, in is_prerelease
    return any([any([y in set(["a", "b", "c", "rc", "dev"]) for y in x]) for x in parsed])
TypeError: 'int' object is not iterable

Storing debug log for failure in /home/von/.pip/pip.log

存在するDebian の提示同じコマンドが成功しました。

何が問題なの?どうやって解決しますか?

$python --version
Python 2.7.9

$pip --version
pip 1.5.6 from /usr/lib/python2.7/dist-packages (python 2.7)

ベストアンサー1

このエラーはエラーに関連しています。https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=786580

解決策はjessieバージョンpython-distlibにダウングレードすることです。python-distlib-whl

wget http://ftp.debian.org/debian/pool/main/d/distlib/python-distlib_0.1.9-1_all.deb
wget http://ftp.debian.org/debian/pool/main/d/distlib/python-distlib-whl_0.1.9-1_all.deb
dpkg -i python-distlib_0.1.9-1_all.deb 
dpkg -i python-distlib-whl_0.1.9-1_all.deb 

これで手術はpip install成功しました。

$ sudo pip install python-constraint
Downloading/unpacking python-constraint
  Downloading python-constraint-1.2.tar.bz2
  Running setup.py (path:/tmp/pip-build-JeOIzg/python-constraint/setup.py) egg_info for package python-constraint

Installing collected packages: python-constraint
  Running setup.py install for python-constraint

Successfully installed python-constraint
Cleaning up...

このパッケージは正式なバグ修正を待ち、当分の間保留されています。

sudo aptitude hold python-distlib python-distlib-whl

おすすめ記事