我正在尝试在运行Python2.7.5的freebsd上安装p4python。我得到了下面的错误。
Using cached p4python-2016.1.1447008.tar.gz
Complete output from command python setup.py egg_info:
Attempting to load API from ftp.perforce.com
Traceback (most recent call last):
File "<string>", line 1, in <module>
File "/tmp/pip-build-WK9yDa/p4python/setup.py", line 611, in <module>
p4_api_dir = get_api_dir()
File "/tmp/pip-build-WK9yDa/p4python/setup.py", line 532, in get_api_dir
p4ftp = P4APIFtp()
File "/tmp/pip-build-WK9yDa/p4python/setup.py", line 65, in __init__
self.platform = self.findPlatform
File "/tmp/pip-build-WK9yDa/p4python/setup.py", line 105, in findPlatform
release = uname.release
AttributeError: 'tuple' object has no attribute 'release'
----------------------------------------
Command "python setup.py egg_info" failed with error code 1 in /tmp/pip-build-WK9yDa/p4python/我已经尝试过更新setutools...Still,但安装失败。有什么帮助吗?
发布于 2018-07-12 02:11:07
这是一个Python 3.x与Python 2.x的问题。在Python2.x上,platform.uname()返回一个常规的元组。在Python3.x上,platform.uname()返回一个命名的元组。
要解决此问题,请在tools/P4APIFtp.py中将uname.release更改为uname[2]。
https://stackoverflow.com/questions/39872232
复制相似问题