の virtualenv に Python 2.7.0 をインストールしています/local/gerrit/python2.7
。これを Python 2.7.3 にアップグレードしたいと思います。これに pip を使用しようとしていますが、どういうわけか python2 と python3 の間で混同されているようです:
$ pip install --upgrade 'python>=2.7,<2.7.99'
Downloading/unpacking python>=2.7,<2.7.99 from http://www.python.org/ftp/python/2.7.3/Python-2.7.3.tar.bz2
Running setup.py egg_info for package python
Traceback (most recent call last):
File "<string>", line 16, in <module>
File "/local/gerrit/python2.7/build/python/setup.py", line 1804
exec(f.read(), globals(), fficonfig)
SyntaxError: unqualified exec is not allowed in function 'configure_ctypes' it contains a nested function with free variables
Complete output from command python setup.py egg_info:
Traceback (most recent call last):
File "<string>", line 16, in <module>
File "/local/gerrit/python2.7/build/python/setup.py", line 1804
exec(f.read(), globals(), fficonfig)
SyntaxError: unqualified exec is not allowed in function 'configure_ctypes' it contains a nested function with free variables
----------------------------------------
Command python setup.py egg_info failed with error code 1 in /local/gerrit/python2.7/build/python
Storing complete log in /storage4/home/gerrit/.pip/pip.log
実際にはpython3/local/gerrit/python2.7/build/python/setup.py
構文があり、何かがめちゃくちゃになっているようです。私の診断は正しいですか?Python とそのすべてのライブラリを再インストールする必要がない方法でこれをクリーンアップするにはどうすればよいですか?