psycopg2安装错误:无法找到vcvarsall.bat

时间:2015-12-09 23:08:11

标签: python django postgresql

我正在尝试将我的django 1.9项目连接到postgresql数据库。首先,我需要安装psycopg2。我从http://www.lfd.uci.edu/~gohlke/pythonlibs/#psycopg获得了我的psycopg文件。但是我无法安装,我有一个"无法找到vcvarsall.bat"错误。

我的python版本是3.5.1。

这是我的错误;

copying tests\test_quote.py -> build\lib.win-amd64-3.5\psycopg2\tests
copying tests\test_transaction.py -> build\lib.win-amd64-3.5\psycopg2\tests
copying tests\test_types_basic.py -> build\lib.win-amd64-3.5\psycopg2\tests
copying tests\test_types_extras.py -> build\lib.win-amd64-3.5\psycopg2\tests

copying tests\test_with.py -> build\lib.win-amd64-3.5\psycopg2\tests
copying tests\__init__.py -> build\lib.win-amd64-3.5\psycopg2\tests
Skipping optional fixer: buffer
Skipping optional fixer: idioms
Skipping optional fixer: set_literal
Skipping optional fixer: ws_comma
running build_ext
building 'psycopg2._psycopg' extension
error: Unable to find vcvarsall.bat

----------------------------------------
Command "c:\python\python35\python.exe -c "import setuptools, tokenize;__file__=
'C:\\Users\\User\\AppData\\Local\\Temp\\pip-build-4q_3mvan\\psycopg2\\setup.py';
exec(compile(getattr(tokenize, 'open', open)(__file__).read().replace('\r\n', '\
n'), __file__, 'exec'))" install --record C:\Users\User\AppData\Local\Temp\pip-e
kz8kaam-record\install-record.txt --single-version-externally-managed --compile"
 failed with error code 1 in C:\Users\User\AppData\Local\Temp\pip-build-4q_3mvan
\psycopg2

有没有人有想法?谢谢..

1 个答案:

答案 0 :(得分:1)

psycopg2需要编译各种开发库。在Windows上,这通常是通过使用某些版本的Visual Studio自动实现的 - 这就是vcvarsall.bat文件的全部内容 - 而且通常是一个巨大的痛苦。幸运的是,Jason Erickson维护了一个psycopg2 here.

的Windows端口

我现在看到您正在使用Python 3.5,并且似乎不是该页面上提供的该版本的版本。幸运的是,有already on Stack Overflow.的答案(其中一条评论说链接页面上没有Python 3.5的版本,但这不再是真的)