recurrenceprobs
recurrenceprobs

Reputation: 13

Unable to use Flask

I basically used the install command "$pip install Flask" and when I try to run a program it says "module can't be found." Flask is installed in "/usr/local/lib/python2.7/site-packages" but I thought the point of pip was so I could import these packages everywhere. I'm trying to run a file on my desktop and even when I move the Flask folder to the desktop, it doesn't work. Any advice? Thanks!

Upvotes: 0

Views: 127

Answers (1)

Jakeway
Jakeway

Reputation: 251

This may not directly solve whatever problem you are having with path variables, but one alternative would to download virtualenv

Flask actually has a good tutorial on how to accomplish this here

Upvotes: 1

Related Questions