Welcome to the Treehouse Community
The Treehouse Community is a meeting place for developers, designers, and programmers of all backgrounds and skill levels to get support. Collaborate here on code errors or bugs that you need feedback on, or asking for an extra set of eyes on your latest project. Join thousands of Treehouse students and alumni in the community today. (Note: Only Treehouse students can comment or ask questions, but non-students are welcome to browse our conversations.)
Looking to learn something new?
Treehouse offers a seven day free trial for new students. Get access to thousands of hours of content and a supportive community. Start your free trial today.

Andy Hughes
8,113 PointsTrying to install flask-bcrypt in VSCode
Just in case anyone else is using VSCode to do their projects etc, I've just tried to install flask-bcrypt, which seemed to install just fine. Then when I tried to call from flask.ext.bcrypt import generate_password_hash
, I got an error saying module not found.
Digging into this I found that if instead, I installed bcrypt using pip install flask_bcrypt
and then used from flask_bcrypt import generate_password_hash
, it worked and the errors disappeared. I think it's the same with the login module too.
Hope that's useful for someone else.
TeamTreeHouse - Would be good if you could add an overlay, or some teachers notes explaining this anomaly to the video. :)
Callum Anderson
Data Analysis Techdegree Student 10,187 PointsCallum Anderson
Data Analysis Techdegree Student 10,187 PointsIt's always best to be using pip for packages so good tip! Especially best from a command line