我在easy_install
中安装了setuptools
和Python 2.7
。我在使用pip
安装easy_install pip
时遇到了噩梦。我已经关注了我的帖子和博客,但仍然没有帮助。
以下是我在Windows cmd
中收到的错误:
Searching for pip
Reading http://pypi.python.org/simple/pip/
Download error: [Errno 10061] No connection could be made because the target mac
hine actively refused it -- Some packages may not be found!
Couldn't find index page for 'pip' (maybe misspelled?)
Scanning index of all packages (this may take a while)
Reading http://pypi.python.org/simple/
Download error: [Errno 10061] No connection could be made because the target mac
hine actively refused it -- Some packages may not be found!
No local packages or download links found for pip
Best match: None
Traceback (most recent call last):
File "C:\Python27\Scripts\easy_install-script.py", line 8, in <module>
load_entry_point('setuptools==0.6c11', 'console_scripts', 'easy_install')()
File "C:\Python27\lib\site-packages\setuptools\command\easy_install.py", line
1712, in main
with_ei_usage(lambda:
File "C:\Python27\lib\site-packages\setuptools\command\easy_install.py", line
1700, in with_ei_usage
return f()
File "C:\Python27\lib\site-packages\setuptools\command\easy_install.py", line
1716, in <lambda>
distclass=DistributionWithoutHelpCommands, **kw
File "C:\Python27\lib\distutils\core.py", line 152, in setup
dist.run_commands()
File "C:\Python27\lib\distutils\dist.py", line 953, in run_commands
self.run_command(cmd)
File "C:\Python27\lib\distutils\dist.py", line 972, in run_command
cmd_obj.run()
File "C:\Python27\lib\site-packages\setuptools\command\easy_install.py", line
211, in run
self.easy_install(spec, not self.no_deps)
File "C:\Python27\lib\site-packages\setuptools\command\easy_install.py", line
434, in easy_install
self.local_index
File "C:\Python27\lib\site-packages\setuptools\package_index.py", line 475, in
fetch_distribution
return dist.clone(location=self.download(dist.location, tmpdir))
AttributeError: 'NoneType' object has no attribute 'clone'
答案 0 :(得分:2)
我这样做我正在使用Windows 7 x64。
Installing Python 2.7
https://www.python.org/download/releases/2.7.2 -------- Windows x86 MSI安装程序(2.7.2)(sig)
安装了python 2.7之后(我默认安装在c:\ python27),所以你准备好了。
**Installing PIP:**
下载文件get-pip.py
https://raw.github.com/pypa/pip/master/contrib/get-pip.py
将其保存在已知文件夹中:c:\ pip \
转到Windows - 运行 - 键入cmd.exe
在cmd.exe内部输入:
cd c:\ python27(或安装python的路径)
你会看到:
C:\ python27
现在输入(记住保存get-pip.py的路线我们的案例c:\ pip)。
c:\ python27 \ python.exe c:\ pip \ get-pip.py
将安装Pip。
Using Pip to Install Django
现在安装了Python和Pip转到Windows - 运行 - 键入cmd.exe
在cmd.exe内部输入:
cd c:\ python27
你会看到:
C:\ python27
现在输入
python.exe -m pip install xxxxxxx
Pip将安装您所需的xxxxxx包。
实施例: pip install Django == 1.6.2
注意:本指南适用于PYTHON和WINDOWS的新手。
此致
erick.alfaro@adtein.com www.adtein.com
答案 1 :(得分:1)
我认为在您的尝试过程中,您会以某种方式弄乱您的Python设置。虽然我确信您可以使用python.org中的CPython安装程序(我和其他许多人都这样做),我强烈建议重新开始(彻底删除到目前为止)并安装其中一个Python发行版具有更多功能,例如:
他们安装了几个额外的软件包,包括pip。他们的安装程序还可以正确设置Windows PATH。因此,在运行安装程序后,您可以继续,开始cmd.exe
并运行python
或pip install ...
可以找到免费版的EPD here。我自己也用EPD和Python(x,y)做了很好的经验。 Here是标准Python(x,y)安装程序带来的“插件”列表。请注意,对于Windows,EPD和Python(x,y)仅可用作32位版本...但是,Windows 64位的ActivePython是免费的(PyPM软件包不适用于64位)。根据您的需要,这可能不是问题。
答案 2 :(得分:1)
我去了https://pypi.python.org/pypi/pip 你可以从那里下载tar。 下载后,只需在Python \ Scripts文件夹中的命令提示符下运行“easy_install pip-1.3.1.tar.gz”。 似乎做了这个工作。 希望这有帮助