Questions tagged «easy-install»

5
通过pip或easy_install安装wxpython
我在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 …

3
easy_install将无法通过代理连接
我正在VirtualBox下运行64位的Ubuntu Server 10.04,并且似乎除了 easy_install和pip 之外的所有东西都可以连接到Internet。我已经设置并导出了http_proxy环境变量,并且还在我知道的每个其他位置都设置了代理地址。然而easy_install总是返回“网络不可达”: :~$ echo $http_proxy http://192.168.1.25:80/ :~$ grep "http_proxy" /etc/bash.bashrc export http_proxy=http://192.168.1.25:80/ :~$ grep "http_proxy" /etc/wgetrc http_proxy = http://192.168.1.25:80/ :~$ ping pypi.python.org PING pypi.python.org (82.94.164.168) 56(84) bytes of data. 64 bytes from pypi.python.org (82.94.164.168): icmp_seq=1 ttl=53 time=114 ms 64 bytes from pypi.python.org (82.94.164.168): icmp_seq=2 ttl=53 time=113 ms …

3
在Ubuntu / Debian中,如何将软件包标记为不可自动移动?
假设我有一个使用Synaptic安装的软件包(在这种情况下为Python软件包)。由于此软件包的版本有些过时,因此我在Synaptic中将其删除,然后使用进行安装easy_install。还使用Synaptic安装了其依赖项之一,但是我宁愿保留Synaptic安装的版本,也不要保留easy_installing它。 唯一的问题是该依赖项现在标记为可自动删除。除了删除并重新安装外,是否有其他方法可以将其标记为手动安装?如果有所作为,我正在使用Ubuntu Jaunty。

3
python easy install的问题
所以我在python 3.3.2上下载了easy_install,我想安装Python Twitter包。所以我在命令提示符下写'easy_install twitter'。弹出一个用户帐户控制窗口,询问我是否希望easy_install.exe对我的计算机进行更改。然后弹出第二个命令提示符窗口,大量文本通过窗口然后关闭,我没有机会阅读它。之后在原始命令提示符窗口中没有输出。然后我进入python并执行'import twitter'但它不识别模块,所以我猜它没有安装。 有什么建议?
By using our site, you acknowledge that you have read and understand our Cookie Policy and Privacy Policy.
Licensed under cc by-sa 3.0 with attribution required.