vote up 0 vote down star

For school, I have made a CMS in django for my major assessment task for Software. My teacher has asked to get the source code and, if applicable, the program compiled.

Now, because i dont want my teacher to install django (Something might go wrong, he may get a different version, missing dependences), how can i package up my django app, plus the django source and make the whole thing runnable (on the development server) by running a single script?

He has python, so that does not need to be included and the target OS would be OS X, but Windows can do as well.

flag

3 Answers

vote up 1 vote down

Without having actually tested it, you should be able to copy the main django directory (/usr/lib/python2.6/site-packages/django for me) over into your project directory, and archive the whole thing. This will continue to keep everything importable (from django import ...), and make it so there's just one archive to extract.

Now, I wouldn't say this is a good way, but it's simple, and I think it'll work. I think.

link|flag
vote up 2 vote down

Pip and VirtualENV will make this task much easier. (not sure the support for windows though)

PIP will help with the requirements installation. http://pypi.python.org/pypi/pip

VirtualENV provides an isolated python environment. URL: http://pypi.python.org/pypi/virtualenv

Reading through this blog post on installing Pinax will give you a good understanding on how the two work together: http://uswaretech.com/blog/2009/03/create-a-new-social-networking-site-in-few-hours-using-pinax-platform-django/

link|flag
vote up 1 vote down

Perhaps Instant Django will set you in the right direction. It's for windows, but it might be of help.

link|flag

Your Answer

Get an OpenID
or

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