Skip to content Skip to sidebar Skip to footer

See Anything Wrong With My Attempt To Get Flask Running? (mod_wsgi + Virtualenv)

I have a VPS running a fresh install of Ubuntu 10.04 LTS. I'm trying to set up a live application using the Flask microframework, but it's giving me trouble. I took notes while I t

Solution 1:

Obviously, it cannot find your "myapp" package. You should add it to the path in your myapp.wsgi file like this:

import sys
sys.path.append(DIRECTORY_WHERE_YOUR_PACKAGE_IS_LOCATED)
from myapp import app

Also, if myapp module is a package, you should put and empty __init__.py file into its directory.

Solution 2:

Edit line sys.path.append, it needs to be a string.

import sys
sys.path.append('directory/where/package/is/located')

Notice the single quotes.

Post a Comment for "See Anything Wrong With My Attempt To Get Flask Running? (mod_wsgi + Virtualenv)"