À l'origine python
$ which python
/usr/bin/python
Mettre par infusion
$ brew install python
paramètres de pip
$ pip install --upgrade setuptools
$ pip install --upgrade pip
Remplacer PATH
echo 'export PATH=/usr/local/bin:/usr/local/share/python:$PATH' >> ~/.bash_profile
source ~/.bash_profile
Vérification
$ which python
/usr/local/bin/python
Confirmation de version, etc.
$ python --version
Python 2.7.8
>>> import django
>>> django.get_version()
>>> django.VERSION
'1.6.6'
Remake de DB
django 1.5 et supérieur
./manage.py sqlclear <appname> | ./manage.py dbshell
1,4 ou moins
python manage.py reset <appname>
Recommended Posts