-
Notifications
You must be signed in to change notification settings - Fork 64
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
ImportError: No module named bcrypt._bcrypt In GAE #41
Comments
I also have this problem, any solutions? |
I have the same issue , I'm using python3 , flask-restful and wanted to use flask_bcrypt to hash users passwords stored in database, when I run the solution by python3 app.py, everything works perfectly and I can hash the passwords and validate them , but when I run the solution through uwsgi I get internal server error when I try to authenticate. When I review the log file , I get the following error: I tried to do one solution suggested in : No module named 'flask_bcrypt' and to add "#@UnresolvedImport" to import but still didn't work. |
i have the same problem |
I think this is related to bcrypt not being pure python, so it's not compatible with gae: |
I've create a Google App Engine project. And add Flask-Bcrypt in my requirements.txt file. Then install the dependencies in my project
lib
folder. When I run the project this gives me above error. But my Flask module which is also a 3rd party library works fine.What's the solution? I'm using Python 2.7
The text was updated successfully, but these errors were encountered: