Re: deploying django - including third party apps

2012-04-27 Thread Babatunde Akinyanmi
Asides Shawn's answer, alwaysdata's documentation educates how to install packages on the host On 4/26/12, Shawn Milochik wrote: > There's no reason a user couldn't run virtualenv, regardless of permissions. > > Download the virtualenv tarball and extract it. It contains a file named > virtualenv

Re: deploying django - including third party apps

2012-04-26 Thread Shawn Milochik
There's no reason a user couldn't run virtualenv, regardless of permissions. Download the virtualenv tarball and extract it. It contains a file named virtualenv.py. Done. Run python virtualenv.py some_path and it will work. -- You received this message because you are subscribed to the Goog

Re: deploying django - including third party apps

2012-04-26 Thread Mike Ryan
If he can't install virtualenv (permission denied), he will have problems copying his modules to the dist/site-packages dir. Also, this method of manually copying is (no offence meant :-) ) rather hacky, and probably not good advice in most situations. Thomas Rega's suggestion of installing virtual

Re: deploying django - including third party apps

2012-04-26 Thread kamagatos
You don't absolutely need virtualenv/pip to perform this task. Just get your 3rd party apps from /usr/local/lib/python2.X/dist-packages/ (if you are using ubuntu) and copy them at the root of your hosting python path. It should do the thing. good luck On Wednesday, April 25, 2012 11:14:58 AM U

Re: deploying django - including third party apps

2012-04-26 Thread Thomas Rega
Sent:* Wednesday, April 25, 2012 11:14 AM *To:* django-users@googlegroups.com <mailto:django-users@googlegroups.com> *Subject:* deploying django - including third party apps hi everyone. i'm developing a simple CRUD django app and my idea is to host it on a free web hosti

Re: deploying django - including third party apps

2012-04-26 Thread luke lukes
ups.com > *Subject:* deploying django - including third party apps > > hi everyone. i'm developing a simple CRUD django app and my idea is to > host it on a free web hosting site that supports django (e.g. > alwaysdata.com or heliohost.org). I havent tried locally to deploy

Re: deploying django - including third party apps

2012-04-25 Thread Daniel Sokolowski
If you have shell access you could do a virtualenv/pip combo install. From: luke lukes Sent: Wednesday, April 25, 2012 11:14 AM To: django-users@googlegroups.com Subject: deploying django - including third party apps hi everyone. i'm developing a simple CRUD django app and my idea is to

deploying django - including third party apps

2012-04-25 Thread luke lukes
hi everyone. i'm developing a simple CRUD django app and my idea is to host it on a free web hosting site that supports django (e.g. alwaysdata.com or heliohost.org). I havent tried locally to deploy it on a web server such as Apache, i've alway used the development server by manage.py runserver