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 tried to get it running and here's my play-by-play in an effort to pinpoint exactly where I went wrong.

INSTALLATION

http://flask.pocoo.org/docs/installation/#installation

$ adduser dchuck
$ sudo apt-get install python-setuptools
$ sudo easy_install pip
$ sudo pip install virtualenv

/home/dchuck/
-- www/

$ sudo pip install virtualenv

/home/dchuck/
-- www/
-- env/

$ . env/bin/activate
$ easy_install Flask

MOD_WSGI

http://flask.pocoo.org/docs/deploying/mod_wsgi/

$ sudo apt-get install apache2
$ sudo apt-get install libapache2-mod-wsgi

Creating WSGI file

$ nano /home/dchuck/www/dchuck.wsgi

--dchuck.wsgi contents:--------------------------
activate_this = '/home/dchuck/env/bin/activate_this.py'
execfile(activate_this, dict(__file__=activate_this))
from dchuck import app as application

/home/dchuck/
-- www/
     -- dchuck.wsgi
-- env/

Configuring Apache

$ nano /etc/apache2/sites-available/dchuck.com

-----dchuck.com file contents ---------------------
<VirtualHost *:80>
    ServerName dchuck.com

    WSGIDaemonProcess dchuck user=dchuck group=dchuck threads=5 python-path=/home/dchuck/env/lib/python2.6/site-packages

    WSGIScriptAlias / /home/dchuck/www/dchuck.wsgi

    <Directory /home/dchuck/www>
        WSGIProcessGroup dchuck
        WSGIApplicationGroup %{GLOBAL}
        Order deny,allow
        Allow from all
    </Directory>
</VirtualHost>

Enable the virtual host file I just created

$ cd /etc/apache2/sites-enabled
$ ln -s ../sites-available/dchuck.com

Restart Apache

$ /etc/init.d/apache2 restart

Servers me a 500 server error page. Here's the latest error log:

mod_wsgi (pid=3514): Target WSGI script '/home/dchuck/www/dchuck.wsgi' cannot be loaded as Python module.
mod_wsgi (pid=3514): Exception occurred processing WSGI script '/home/dchuck/www/dchuck.wsgi'.
Traceback (most recent call last):
File "/home/dchuck/www/dchuck.wsgi", line 4, in <module>
from dchuck import app as application
ImportError: No module named dchuck

The errors allude that it's something strikingly obvious, but I'm quite lost.

link|improve this question

By the way, did you know about the command cat? It prints out the contents of a file (so in this log it would produce what you've copied out of nano automatically) – Chris Morgan Dec 12 '10 at 12:20
Great question! Thanks. – PEZ Oct 1 '11 at 19:06
I had the exactly same setting and got the same problem. Solved! Nice question and answer! Thanks. – kyu May 10 at 9:11
feedback

2 Answers

up vote 5 down vote accepted

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

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

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

link|improve this answer
feedback

Edit... sys.path.append.... needs to be a string.

import sys correct code would be sys.path.append('directory/where/package/is/located') ...

Notice the single quotes.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.