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?)
source
share