Questions tagged «failed-installation»

30
错误:找不到vcvarsall.bat
我试图安装Python软件包dulwich: pip install dulwich 但是我收到了一个神秘的错误消息: error: Unable to find vcvarsall.bat 如果我尝试手动安装软件包,也会发生相同的情况: > python setup.py install running build_ext building 'dulwich._objects' extension error: Unable to find vcvarsall.bat

12
Windows 7 SDK安装失败
我似乎完全无法将Windows 7 SDK安装到我的计算机上,并且我在网络上找到的唯一解决方案是对注册表进行大量更改。我已经做到了-仍然没有成功。 这是报告的错误: 安装选定的Windows SDK组件时发生问题。 “用于Windows 7的Microsoft Windows SDK”产品的安装报告了以下错误:有关详细信息,请参阅Samples \ Setup \ HTML \ ConfigDetails.htm文档。 请尝试解决问题,然后再次启动Windows SDK安装程序。如果您仍然遇到此问题,请访问SDK团队支持页面,网址为http://go.microsoft.com/fwlink/?LinkId=130245。 单击查看日志按钮以查看安装日志。 要退出,请单击完成。 也没有Samples要引用的目录,并且SDK支持团队似乎不再住在该目录中。 我该如何解决这个问题?

12
OSX El Capitan:sudo pip install OSError:[Errno:1]不允许操作
当我跑步时: sudo pip install ipython 我收到以下错误 OSError:[Errno:1]不允许的操作:'/System/Library/Frameworks/Python.framework/Versions/2.7/share' 最后执行的命令尝试创建上面给出的目录。 另外,以下命令无法在不提供任何错误的情况下安装iPython。 sudo pip install --user python (我使用的是Mac OS X El Capitan,以防其他人在该操作系统上看到相同的问题。)

13
Python3:ImportError:使用模块多处理中的值时,没有名为“ _ctypes”的模块
我正在使用Ubuntu,并已安装Python 2.7.5和3.4.0。在Python 2.7.5中,我能够成功分配变量x = Value('i', 2),但在3.4.0中却不能。我正进入(状态: Traceback (most recent call last): File "<stdin>", line 1, in <module> File "/usr/local/lib/python3.4/multiprocessing/context.py", line 132, in Value from .sharedctypes import Value File "/usr/local/lib/python3.4/multiprocessing/sharedctypes.py", line 10, in < module> import ctypes File "/usr/local/lib/python3.4/ctypes/__init__.py", line 7, in <module> from _ctypes import Union, Structure, Array ImportError: No …




8
mysql-python安装错误:无法打开包含文件“ config-win.h”
我正在尝试运行,pip install mysql-python connector但始终显示错误“无法打开包含文件:'config-win.h' ”。 在我的Mac和另一台Windows机器上,该安装工作正常,但在此机器上却不能。我已经下载了Visual Studio C ++,并尝试同时安装32位和64位。 _mysql.c(42) : fatal error C1083: Cannot open include file: 'config-win.h': No s uch file or directory error: command 'C:\\Program Files (x86)\\Microsoft Visual Studio 9.0\\VC\\BIN\\c l.exe' failed with exit status 2 ---------------------------------------- Cleaning up... Command C:\Users\Admin1\Desktop\python\virtual\Scripts\python.exe -c "import set uptools, tokenize;__file__='C:\\Users\\Admin1\\Desktop\\python\\virtual\\build\\ MySQL-python\\setup.py';exec(compile(getattr(tokenize, …
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.