Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

ImportError: No module named flask.ext.storage

Tags:

python

flask

I am working on this example of image uploading with Flask-Upload but when I run the code, python says:

"ImportError: No module named flask.ext.storage"

(I successfully installed Flask, SQLAlchemy, Flask-Upload by using pip)

Here are all packages I have installed on myproject:

installed packages)

I have googled, but I can not find any way to fix this.

like image 903
Never Mine Avatar asked Oct 03 '13 04:10

Never Mine


1 Answers

Try:

$ pip install -e git://github.com/kvesteri/flask-storage.git#egg=Flask-Storage

That project lives here: https://github.com/kvesteri/flask-storage

like image 80
aaronfay Avatar answered Sep 22 '22 08:09

aaronfay