Warning: file_get_contents(/data/phpspider/zhask/data//catemap/2/python/346.json): failed to open stream: No such file or directory in /data/phpspider/zhask/libs/function.php on line 167

Warning: Invalid argument supplied for foreach() in /data/phpspider/zhask/libs/tag.function.php on line 1116

Notice: Undefined index: in /data/phpspider/zhask/libs/function.php on line 180

Warning: array_chunk() expects parameter 1 to be array, null given in /data/phpspider/zhask/libs/function.php on line 181
Python 在PYPI Pip下载中未找到Pywin31-214_Python_Pywin32 - Fatal编程技术网

Python 在PYPI Pip下载中未找到Pywin31-214

Python 在PYPI Pip下载中未找到Pywin31-214,python,pywin32,Python,Pywin32,我正在尝试使用Pip下载Py32。它列在PYPI上,如下所示: 我正在尝试使用以下标准pip语法安装它: pip2.7 install pywin32-214 这将在命令Shell中生成以下错误消息: C:\Python27\Scripts>pip2.7 install pywin32-214 Downloading/unpacking pywin32-214 Could not find any downloads that satisfy the requirement pyw

我正在尝试使用Pip下载Py32。它列在PYPI上,如下所示:

我正在尝试使用以下标准pip语法安装它:

pip2.7 install pywin32-214
这将在命令Shell中生成以下错误消息:

C:\Python27\Scripts>pip2.7 install pywin32-214
Downloading/unpacking pywin32-214
  Could not find any downloads that satisfy the requirement pywin32-214
Cleaning up...
No distributions at all found for pywin32-214
Storing debug log for failure in C:\Users\Oleg Salenko\pip\pip.log
如果我尝试使用以下语法:

pip2.7 install pywin32
我收到以下错误消息:

C:\Python27\Scripts>pip2.7 install pywin32
Downloading/unpacking pywin32
  Could not find any downloads that satisfy the requirement pywin32
    Some externally hosted files were ignored (use --allow-external pywin32 to allow).
Cleaning up...
No distributions at all found for pywin32
Storing debug log for failure in C:\Users\Oleg Salenko\pip\pip.log
有人能看到这里的问题是什么,我是如何解决的吗


谢谢

除非出于某种原因您特别需要从
pip
安装,否则我强烈建议您从Christoph Gohlke的Python扩展包Windows存储库中获取。一切都已经编译好并准备就绪,根据我的经验,那里几乎所有的安装程序都能正常工作。不过,您需要使用python.org版本的python。

尝试
pip2.7安装pywin32——允许外部pywin32——允许未经验证的pywin32
pip2.7安装http://sourceforge.net/projects/pywin32/files/pywin32/Build%20219/
@PadraicCunningham ok将立即尝试。我有一个相当好的主意,那将做什么,但你能帮我走回家,这样我就非常清楚了吗?谢谢。第一个命令允许您安装外部托管的软件包,第二个命令直接使用来自sourceforge的软件包,sourceforge文件应该是
http://sourceforge.net/projects/pywin32/files/pywin32/Build%20219/pywin32-219.zip/下载
。如果您转到sourceforge的下载页面,也会有.exe软件包。@PadraicChanningham第一个选项抛出的错误与我原来的问题相同,第二个选项抛出的错误是:return codecs.utf_8_decode(input,errors,True)UnicodeDecodeError:“utf8”编解码器无法解码位置1中的字节0x8b:无效的s tart bytei我对命令提示符中unicode字符的字符限制知之甚少,但我不确定哪个字符是有问题的字符?