系统相关
首页 > 系统相关> > Python:无法easy_install(Windows 7 x64)

Python:无法easy_install(Windows 7 x64)

作者:互联网

我在Windows 7 x64上运行python 2.7,并尝试easy_install pysqlite.

使用命令:easy_install -U pysqlite

它以错误退出:

error: Setup script exited with error: Unable to find vcvarsall.bat

本网站:http://code.google.com/p/rdflib/issues/detail?id=104#c4
建议安装MingGW的解决方法,说要检查安装上的g选项(加上其他一些东西).

不幸的是,MingGW没有给我选择安装g,只有c,当然第二次运行easy_install,我得到“..命令’gcc’失败:没有这样的文件或目录”.所以现在我被困了.

关于如何解决这个问题的任何建议都会很棒!

解决方法:

即使您安装了编译器(MinGW或Visual Studio),您仍然需要安装SQLite3开发库.在Windows上构建东西很痛苦,所以我建议你获得unofficial pre-built Windows binaries并安装它.

另外,您应该考虑switching to ActivePython,因为它包含一个包管理器,允许您从ActiveState’s repository安装预构建的模块.

至于有问题的特定错误,这是一个distutils错误,你应该在the Python bug tracker提出你的问题.

标签:windows-7-x64,python,windows,distutils,pysqlite
来源: https://codeday.me/bug/20190903/1798171.html