import django fails, what should I look at?

2014-07-19 Thread Dan Bikle
Hello World, I'm curious about working with the dev-version of Django. I want to get skilled at using Django, Python 2.7.8, and virtualenv together. I see this page: https://github.com/django/django/blob/master/INSTALL I installed python and then virtualenv: d...@cen113.dan ~ $ which python

Re: import django fails, what should I look at?

2014-07-20 Thread Andre Terra
You should use pip to install django. This is how I go about it, from a fresh install. mkdir ~/virtual mkdir ~/projects pip install virtualenv # unnecessary in python 3.3+ pip install virtualenvwrapper # use this. it will make your life much simplerecho "export WORKON_HOME=$HOME/virtual" >> ~/.ba

Re: import django fails, what should I look at?

2014-07-25 Thread Andre Terra
On Sun, Jul 20, 2014 at 12:57 PM, Andre Terra wrote: > pip install -e git#https://github.com/django/django.git For the record, the right command is pip install -e git+ https://github.com/django/django.git#egg=django -- You received this message because you are subscribed to the Google Groups