Compiler error when installing py-bcrypt on Windows 7

I need to install the Flask module flask-bcrypt, which requires py-bcrypt. When I try to install it, an error occurs:

C:\Users\Param\Downloads\py-bcrypt-0.3>python setup.py install
running install
running bdist_egg
running egg_info
writing py_bcrypt.egg-info\PKG-INFO
writing top-level names to py_bcrypt.egg-info\top_level.txt
writing dependency_links to py_bcrypt.egg-info\dependency_links.txt
reading manifest file 'py_bcrypt.egg-info\SOURCES.txt'
reading manifest template 'MANIFEST.in'
writing manifest file 'py_bcrypt.egg-info\SOURCES.txt'
installing library code to build\bdist.win32\egg
running install_lib
running build_py
running build_ext
error: don't know how to compile C/C++ code on platform 'nt' with 'MinGW32' comp
iler

What causes this problem?

I used to install MinGW32 on my 64-bit computer running Windows 7. Is the problem with MinGW 32 bits and Windows 64 bits? If so, what should I do to solve this problem? (How can I use the MinGW 64 bit on my machine?)

+5
source share
2 answers

These libraries are already compiled and available somewhere. Someone has already downloaded compiled versions for windows. I managed to run flask-bcrypt on Windows with files.

// python.

subreddit :

http://www.reddit.com/r/flask/comments/15q5xj/anyone_have_a_working_version_of_flaskbcrypt_for/

+4

MinGW. MinGW GCC, Python.

Python distutils GCC

0

All Articles