我在wxpython
使用安装时遇到了一些问题pip
。
这是我当前的输出:
[myuserid]% sudo pip install wxpython
Downloading/unpacking wxpython
Downloading wxPython2.8-win64-devel-2.8.11.0-msvc9x64.tar.bz2 (7.2Mb): 7.2Mb downloaded
Running setup.py egg_info for package wxpython
Traceback (most recent call last):
File "<string>", line 14, in <module>
IOError: [Errno 2] No such file or directory: '/Users/myuserid/build/wxpython/setup.py'
Complete output from command python setup.py egg_info:
Traceback (most recent call last):
File "<string>", line 14, in <module>
IOError: [Errno 2] No such file or directory: '/Users/myuserid/build/wxpython/setup.py'
----------------------------------------
Command python setup.py egg_info failed with error code 1
Storing complete log in /Users/myuserid/.pip/pip.log
- 我看过了pip.log文件,但它完全是空的。
- 我已经尝试通过安装其他软件包,
pip
并且没有任何问题,所以我认为它pip
本身正在工作。
我也尝试通过easy_install
并得到以下内容:
[myuserid]% sudo easy_install wxpython
install_dir /Library/Frameworks/EPD64.framework/Versions/6.2/lib/python2.6/site-packages/
Searching for wxpython
Reading http://pypi.python.org/simple/wxpython/
Reading http://wxPython.org/
Reading http://wxPython.org/download.php
Best match: wxPython src-2.8.11.0
Downloading http://downloads.sourceforge.net/wxpython/wxPython-src-2.8.11.0.tar.bz2
Processing wxPython-src-2.8.11.0.tar.bz2
error: Couldn't find a setup script in /tmp/easy_install-faZZOn/wxPython-src-2.8.11.0.tar.bz2
- 这是否意味着,有一些与要去
wxpython
包通过为抓住pip
和easy_install
- 除了从源代码构建之外,还有其他方法可以从
pip
或调试或修补此类响应easy_install
吗?
系统配置:
- OS X 10.6
- 热情的Python发行版Python v2.6,64位
如果需要其他信息,请告知我们,我们将其发布。