Skip to content

Instantly share code, notes, and snippets.

@terrycojones
Created September 1, 2012 03:14
Show Gist options
  • Save terrycojones/3563171 to your computer and use it in GitHub Desktop.
Save terrycojones/3563171 to your computer and use it in GitHub Desktop.
/tmp $ mkvirtualenv xx
New python executable in xx/bin/python
Installing distribute.............................................................................................................................................................................................done.
Installing pip...............done.
virtualenvwrapper.user_scripts creating /home/terry/.virtualenvs/xx/bin/predeactivate
virtualenvwrapper.user_scripts creating /home/terry/.virtualenvs/xx/bin/postdeactivate
virtualenvwrapper.user_scripts creating /home/terry/.virtualenvs/xx/bin/preactivate
virtualenvwrapper.user_scripts creating /home/terry/.virtualenvs/xx/bin/postactivate
virtualenvwrapper.user_scripts creating /home/terry/.virtualenvs/xx/bin/get_env_details
(xx) /tmp/xx $ pip install django==1.4.1
Downloading/unpacking django==1.4.1
Downloading Django-1.4.1.tar.gz (7.7Mb): 7.7Mb downloaded
Running setup.py egg_info for package django
Installing collected packages: django
Running setup.py install for django
changing mode of build/scripts-2.7/django-admin.py from 644 to 755
changing mode of /home/terry/.virtualenvs/xx/bin/django-admin.py to 755
Successfully installed django
Cleaning up...
(xx) /tmp/xx $ django-admin startproject yy
(xx) /tmp/xx $ cd yy
(xx) /tmp/xx/yy $ python manage.py collectstatic --clear --noinput
Deleting 'manage.py'
Deleting 'urls.py'
Deleting '__init__.pyc'
Deleting '__init__.py'
Deleting 'settings.pyc'
Deleting 'settings.py'
0 static files copied.
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment