尝试在Windows上安装Python bcrypt的许多问题(x64)

时间:2011-08-28 13:05:43

标签: python windows windows-7 windows64

此问题已被提及elsewhere,但它没有提供可行的解决方案,所以我仍然希望打开票证。

c:\Users\me\Desktop\temp\py-bcrypt-0.2>setup.py install build --compiler=min
gw32
running install
running build
running build_py
running build_ext
building 'bcrypt._bcrypt' extension
C:\MinGW\bin\gcc.exe -mno-cygwin -mdll -O -Wall -IC:\Python27\include -IC:\Python27\PC -c bcrypt/bcrypt_python.c -o build\temp.win32-2.7\Release\bcrypt\bcrypt_python.o
bcrypt/bcrypt_python.c:29:26: error: expected declaration specifiers or '...' before 'u_int8_t'
bcrypt/bcrypt_python.c:29:38: error: expected declaration specifiers or '...' before 'u_int16_t'
bcrypt/bcrypt_python.c:29:49: error: expected declaration specifiers or '...' before 'u_int8_t'
bcrypt/bcrypt_python.c: In function 'bcrypt_encode_salt':
bcrypt/bcrypt_python.c:56:2: error: too many arguments to function 'encode_salt'

bcrypt/bcrypt_python.c:29:6: note: declared here
error: command 'gcc' failed with exit status 1

这是在摆脱了最初的 “error: Setup script exited with error: Unable to find vcvarsall.bat” 后,我留下了似乎是一个戈迪奇结。 pipeasy-install不起作用。我还阅读了一些other篇文章。

我现在不需要实施bcrypt,所以这不是一个紧急事项,但显然,实施安全的密码保护至关重要。

2 个答案:

答案 0 :(得分:1)

我找到的最简单的方法是下载并安装Windows二进制文件,而不是尝试编译自己。 This guy has some on bitbucket

答案 1 :(得分:0)

假设您正在使用mingw64,您应该将ifdefs上的_WIN32中的_MSC_VER更改为bcrypt.c,bcrypt_python.c和pybc_blf.h

(我也回答了另一个问题)