Hi,

> I'm using virtualenv with --no-site-packages and now I like to do a
> deployment of my app... I'm using a sharing hosting, can I uypload all my
> enviroment dir (with the packages installed with pip) to the server and use
> them?
>

That won't necessarily work. Some packages need to be compiled, so it would
only work if both environments are the same architecture.


> What's the better way to the deployment? mod_python, mod_wsgi, perhaps
> fast-cgi?
>

mod_python is too old, I'm running fine with both nginx+mod_fcgi as well as
Apache+mod_wsgi.

As my namesake mentioned, I'd freeze your env and rebuild it using pip
install. Of course you have access to the cline on the server? :)

Regards,
Piotr

-- 
You received this message because you are subscribed to the Google Groups 
"Django users" group.
To post to this group, send email to django-us...@googlegroups.com.
To unsubscribe from this group, send email to 
django-users+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/django-users?hl=en.

Reply via email to