logo Debian Debian Debian-France Debian-Facile Debian-fr.org Forum-Debian.fr Debian ? Communautés logo inclusivité

Debian-facile

Bienvenue sur Debian-Facile, site d'aide pour les nouveaux utilisateurs de Debian.

Vous n'êtes pas identifié(e).


L'icône rouge permet de télécharger chaque page du wiki visitée au format PDF et la grise au format ODT → ODT PDF Export

Différences

Ci-dessous, les différences entre deux révisions de la page.

Lien vers cette vue comparative

Les deux révisions précédentes Révision précédente
Prochaine révision
Révision précédente
Prochaine révision Les deux révisions suivantes
utilisateurs:hypathie:tutos:developpement-pyhon-utiliser-django [08/12/2015 10:26]
Hypathie [Avant de commencer]
utilisateurs:hypathie:tutos:developpement-pyhon-utiliser-django [08/12/2015 14:23]
Hypathie [Avant de commencer]
Ligne 5: Ligne 5:
  
  
-=====Avant de commencer ​====+===== Installations =====
  
-Sur Jessie python ​et python ​3 sont tous deux installés.+**Installer les outils ​et bibliothèques pour développer en python ​ou python3**
  
-==== Installer les outils et bibliothèques pour développer en python ​ou python 3 ====+<note tip> 
 +Sur Jessie, ​python ​et python 3 sont tous deux installés. 
 +</​note>​
  
    * Fichiers d'​en-tête de Python    * Fichiers d'​en-tête de Python
Ligne 54: Ligne 56:
  
 <code root>​apt-get install python-doc python3-doc</​code>​ <code root>​apt-get install python-doc python3-doc</​code>​
 +
 +  * pour utiliser pyenv
 +
 +<code root>​apt-get install -y make build-essential libssl-dev zlib1g-dev libbz2-dev \
 +libreadline-dev libsqlite3-dev wget curl llvm libncurses5-dev</​code>​
  
   * Sans rapport avec le développement mais utilisé plus bas   * Sans rapport avec le développement mais utilisé plus bas
Ligne 59: Ligne 66:
 <code root>​apt-get install tree</​code>​ <code root>​apt-get install tree</​code>​
  
-====Préparer son système pour travailler avec python2 et python3==== 
  
-===Utiliser update-alternatives pour choisir l'une ou l'​autre des versions:===+===== Configurations et installation de Django avec SQLite3=====
  
-  * Charger les différentes versions de Python :+==== Installer pyenv====
  
-<​code ​root>update-alternatives --list python</​code>​ +<​code ​user>git clone https://​github.com/​yyuu/​pyenv.git ~/.pyenv</​code>​ 
-<​code ​retour>update-alternatives:​ error: no alternatives for python</​code>​+<​code ​user>echo '​export PYENV_ROOT="​$HOME/​.pyenv"'​ >> ~/.bashrc</​code>​
  
-  * Pour voir où sont les exécutables des deux versions disponibles ​ de python ​:+<code user>​echo '​export PATH="​$PYENV_ROOT/​bin:$PATH"'​ >> ~/​.bashrc</​code>​ 
 +<code user>​echo 'eval "​$(pyenv init -)"'​ >> ~/​.bashrc</​code>​ 
 +<code user>​exec $SHELL</​code>​ 
 +<code user>​pyenv</​code>​ 
 +<code retour>​pyenv 20151124-16-g132179d 
 +Usage: pyenv <​command>​ [<​args>​]
  
-<code user> ls /​usr/​bin/​python*</​code>​ +Some useful pyenv commands are: 
-<code retour> +   commands ​   List all available pyenv commands 
-/​usr/​bin/​python ​           /​usr/​bin/​python3 ​           /​usr/​bin/​python3-config +   local       Set or show the local application-specific Python version 
-/​usr/​bin/​python2 ​          /​usr/​bin/​python3.4 ​         /​usr/​bin/​python3m +   global ​     Set or show the global Python version 
-/​usr/​bin/​python2.7 ​        /​usr/​bin/​python3.4-config ​  ​/​usr/​bin/​python3m-config +   shell       Set or show the shell-specific Python version 
-/​usr/​bin/​python2.7-config ​ /​usr/​bin/​python3.4m ​        /​usr/​bin/​python-config +   install ​    ​Install a Python version using python-build 
-/​usr/​bin/​python2-config ​   /​usr/​bin/​python3.4m-config +   uninstall ​  ​Uninstall a specific Python version 
-</​code>​+   ​rehash ​     Rehash pyenv shims (run this after installing executables) 
 +   ​version ​    Show the current Python version and its origin 
 +   ​versions ​   List all Python versions available to pyenv 
 +   which       ​Display the full path to an executable 
 +   ​whence ​     List all Python versions that contain the given executable
  
-  * Pour ajouter à la liste de update-alternatives les deux versions de python disponibles : +See `pyenv help <​command>'​ for information on a specific command. 
-(ici par exemple; "/usr/bin/python2.7" et "/usr/bin/python3.4 ")+For full documentation,​ see: https://github.com/yyuu/pyenv#​readme<​/code> 
 +<code user>​pyenv install 2.7.9</​code>​ 
 +<code user>​pyenv install 3.4.3</​code>​
  
-<code root>update-alternatives --install /​usr/​bin/​python python /​usr/​bin/​python2.7 1</​code> ​ +<note> 
-<code root>​update-alternatives --install /​usr/​bin/​python python /​usr/​bin/​python3.4 2</code>+L'​exécution des deux commandes précédentes est longue. Patience..
 +</note>
  
-- Pour voir la nouvelle liste de update-alternatives :+<code user>​pyenv versions</​code>​ 
 +<code retour>* system (set by /​home/​hypathie/​.pyenv/​version) 
 +  2.7.9 
 +  3.4.3</​code>​ 
 +   
 +  * les commandes pyenv
  
-<​code ​root>update-alternatives --list python</​code>​ +<​code ​user>pyenv +lacommande</​code>​
-<code retour> /​usr/​bin/​python2.7 +
- /​usr/​bin/​python3.4</​code>​+
  
 +  * Avoir une liste des commandes pyenv
  
-- On va laisser tout le système configurer avec python3 dans un premier temps : +<​code ​user>pyenv</​code>​ 
- +<code retour>Some useful pyenv commands are: 
-<​code ​root>update-alternatives --config python</​code>​ +   commands ​   List all available pyenv commands 
-<code retour>​ +   local       Set or show the local application-specific Python version 
-Il existe 2 choix pour l'​alternative python (qui fournit /​usr/​bin/​python). +   global ​     Set or show the global Python version 
- +   shell       Set or show the shell-specific Python version 
-  ​Sélection ​  ​Chemin ​             Priorité ​ État +   ​install ​    ​Install a Python version using python-build 
------------------------------------------------------------- +   uninstall ​  ​Uninstall a specific Python version 
-* 0            /​usr/​bin/​python3.4 ​  ​2         mode automatique +   rehash ​     Rehash pyenv shims (run this after installing executables) 
-  ​1 ​           /​usr/​bin/​python2.7 ​  ​1         mode manuel +   version ​    Show the current Python version and its origin 
-  ​2 ​           /​usr/​bin/​python3.4 ​  ​2         mode manuel +   versions ​   List all Python versions available to pyenv 
- +   which       ​Display the full path to an executable 
-Appuyez sur <​Entrée>​ pour conserver la valeur par défaut[*] ou choisissez le num+   ​whence ​     List all Python versions that contain the given executable
 </​code>​ </​code>​
  
-On choisit ​la sélection correspondante à python2.7 ​pour tout le système. Ici c'est le choix n°1. +  * Configurer ​la version du shell pyenv pour choisir sa version de python 
- +- Pour que le shell utilise ​la version 2 installée plutôt 
-<note warning>​ +<​code ​user>pyenv shell 2.7.9</​code>​ 
-  * À savoir pour supprimer l'un des choix de la liste : +- Pour savoir quelle est la version de son shell 
- +<code user>pyenv shell</code
-<​code ​root>update-alternatives --remove python /​usr/​bin/​python2.7</​code>​ +<code retour>​2.7.9</code
- +- version de python utilisée 
-  * Ne jamais désinstaller les versions inférieures à python 3 ! \\ De nombreux logiciels ne fonctionneraient plus. +<​code ​user>python --version</​code>​
- +
-''​<del>apt-get purge python</del>''​ +
-</note+
- +
-  * Pour vérifier +
- +
-<​code ​root>python --version</​code>​+
 <code retour>​Python 2.7.9</​code>​ <code retour>​Python 2.7.9</​code>​
 +- Depuis où ?
 +<code user> which python</​code>​
 +<code user>/​home/​hypathie/​.pyenv/​shims/​python</​code>​
  
-<note tip> +- Pour changer ​de version ​de python pour l'environnement virtuel, on fait la même chose avec la version 3 
-L'​idée suivie ici sera de conserver python2 pour tout le système, et de mettre en place python3 dans un environnement virtuel ​consacré aux projets django\\+<code user>​pyenv shell 3.4.3</​code>​ 
 +<code user>​python --version</​code>​ 
 +<code retour>​Python 3.4.3</​code>​
  
-Pour installer Django avec python3 y compris **dans un environnement virtuel on n'​utilisera pas** ''​virtualenv'',​ afin de s'​éviter quelque conflits lors de l'​installation de django. \\+====Utiliser ​virtualenv ​avec pyenv====
  
-En effet :+  * Configuration du système pour utiliser virtualenv avec pyenv
  
-<code user> +<code user>git clone https://​github.com/​yyuu/​pyenv-virtualenv.git ~/​.pyenv/​plugins/​pyenv-virtualenv</​code>​ 
-python ​--version +<​code ​user>echo 'eval "​$(pyenv virtualenv-init -)"'​ >> ~/.bashrc</​code>​ 
-</​code>​ +<code user>​exec $SHELL</​code>​
-<​code ​retour> +
-Python 3.4.2 +
-</​code>​+
  
-<code user>​virtualenv MonPy3Django -p /​usr/​bin/​python3.4</​code>​ +  ​Créer un répertoire où l'on pourra installer ​django ​pour python 3
-<code user>cd MonPy3Django/</​code>​ +
-<code user>​source bin/​activate 1.8-3.4</​code>​ +
-<code retour>​Downloading/​unpacking django +
-  Downloading Django-1.9-py2.py3-none-any.whl (6.6MB): 6.6MB downloaded +
-Installing collected packages: django +
-*** Error compiling ​'/​tmp/​pip-build-c20d1nfa/​django/​django/​conf/​app_template/​apps.py'​... +
-  File "/​tmp/​pip-build-c20d1nfa/​django/​django/​conf/​app_template/​apps.py",​ line 4 +
-    class {{ camel_case_app_name }}Config(AppConfig):​ +
-          ^ +
-SyntaxError:​ invalid syntax+
  
-*** Error compiling '/tmp/pip-build-c20d1nfa/django/​django/​conf/​app_template/​models.py'... +<code user>​mkdir ProjetsDjangoPy3 && cd ProjetsDjangoPy3<​/code> 
-  File "/tmp/pip-build-c20d1nfa/django/django/conf/app_template/models.py", line 1 +<code user>​pyenv shell 3.4.3</code> 
-    {{ unicode_literals }}from django.db import models +<code user>​python ​--version</code> 
-                             ^ +<code retour>​Python 3.4.3</​code>​ 
-SyntaxErrorinvalid syntax +<code user>​pyenv virtualenv 1.8-3.4</​code>​ 
- +<code retour>​Ignoring indexes: https://pypi.python.org/​simple 
-Successfully installed django +Requirement already satisfied (use --upgrade to upgrade): setuptools in /home/hypathie/.pyenv/versions/3.4.3/envs/1.8-3.4/​lib/​python3.4/​site-packages 
-Cleaning up...+Requirement already satisfied (use --upgrade to upgrade)pip in /​home/​hypathie/​.pyenv/​versions/​3.4.3/​envs/​1.8-3.4/​lib/​python3.4/​site-packages
 </​code>​ </​code>​
 +<code user>​pyenv activate 1.8-3.4</​code>​
  
-</​note>​+====Installer Django ====
  
 +<code user>pip install django</​code>​
 +<code retour>​You are using pip version 6.0.8, however version 7.1.2 is available.
 +You should consider upgrading via the 'pip install --upgrade pip' command.
 +Collecting django
 +  Downloading Django-1.9-py2.py3-none-any.whl (6.6MB)
 +    100% |################################​| 6.6MB 88kB/​s ​
 +Installing collected packages: django
  
 +Successfully installed django-1.9
 +(1.8-3.4) hypathie@debian:​~/​MonPython3Django$ pip install django</​code>​
 +Pas d'​erreur cette fois 8-)
  
 +  * Pour vérifier les versions ​
  
-===Configurer son système avec Python3 pour l'​utilisateur courant :=== +<code user>django-admin.py --version</​code>​ 
- +<​code ​retour>1.9</​code>​
-  * On édite le fichier "​~/​bashrc"​ : +
- +
-<code user>vim ~/.bashrc</​code>​ +
- +
-  * On ajoute cet alias : +
- +
-<​code>​ +
-alias python='/​usr/​bin/​python3.4'​ +
-</​code>​ +
- +
-  * On enregistre puis on actualise l'​environnement de l'​utilisateur courant : +
- +
-<code user>. ~/.bashrc</​code>​+
  
 <code user>​python --version</​code>​ <code user>​python --version</​code>​
 +<code user>​Python 3.4.3</​code>​
  
-<code retour>​Python 3.4.2</​code>​ +Avec la commande recommandée ​par la doc officielle de django:
- +
- +
-===== Configurations et installation de Django avec SQLite3===== +
- +
-==== Installer Django dans un environnement python virtuel ==== +
- +
-=== On créer un répertoire par exemple sur son bureau :=== +
- +
-<code user>​virtualenv MonPy3Django -p /​usr/​bin/​python3.4</​code>​ +
- +
-Cela a crée une dossier nommé "​PremiersProjetsDjango"​ dans le répertoire de l'​utilisateur courant +
- +
- +
-===on se place dans le dossier "​PremiersProjetsDjango"​=== +
- +
-<code user>cd ~/​MonPy3Django/​ && ls</​code>​ +
- +
-Il contient trois dossiers permettant d'​utiliser python : +
- +
-<code retour>​bin ​ include ​ lib</​code>​ +
- +
-Les outils sont dans bin/ +
- +
-<code user>​tree bin/</​code>​ +
-<code retour>​ +
-bin/ +
-├── activate +
-├── activate.csh +
-├── activate.fish +
-├── activate_this.py +
-├── easy_install +
-├── easy_install-3.4 +
-├── pip +
-├── pip3 +
-├── pip3.4 +
-├── python -> python3.4 +
-├── python3 -> python3.4 +
-└── python3.4 +
-</​code>​ +
- +
-On voit que tout l'​environnement pointe vers python3.4 +
- +
-=== On active l'​environnement virtuel python=== +
- +
- +
- +
-<note tip> +
-**Pour sortir de l'​environnement virtuel python :** +
- +
-<code user>​deactivate</​code>​ +
-</​note>​ +
- +
-=== On installe Django === +
- +
-<code user>​pip3 install django</​code>​ +
- +
-  * Et pour vérifier tout en prenant connaissance de la version de django installée : +
- +
-(selon la méthode proposer ​par la doc officielle de Django : https://​docs.djangoproject.com/​fr/​1.8/​intro/​tutorial01/​)+
  
 <code user>​python3 -c "​import django; print(django.get_version())"</​code>​ <code user>​python3 -c "​import django; print(django.get_version())"</​code>​
-<code retour>​1.9</​code>​ 
  
-<note tip> +aussi bien que :
-  * **Tout est bien clair ? **+
  
-<code user>deactivate</​code>​ +<code user>python ​-c "​import django; print(django.get_version())"</​code>​
-<code user>​python3 ​-c "​import django; print(django.get_version())"​</​code>​ +
-<code retour>​ +
-Traceback (most recent call last): +
-  File "<​string>",​ line 1, in <​module>​ +
-ImportError:​ No module named '​django'​ +
-</​code>​+
  
- 
-<code user>​source bin/​activate</​code>​ 
-<code user>​python3 -c "​import django; print(django.get_version())"</​code>​ 
 <code retour>​1.9</​code>​ <code retour>​1.9</​code>​
  
 +8-)
  
-  ​* Pour avoir la liste de tous les modules python installés dans son environnement ​:+<note tip> 
 +  ​* Pour sortir ​de pyenv :
  
-<code user>pip freeze</​code>​ +<code user>pyenv deactivate</​code>​
-<code retour>​ +
-Django==1.9 +
-wheel==0.24.0 +
-</​code>​ +
- +
-  * **Manuel officiel de pip** : https://​pip.pypa.io/​en/​stable/​user_guide/​+
 </​note>​ </​note>​
  
  
-==== Création d'un premier ​projet ​Django====+====Créer ​un projet ​django sous python 3====
  
 <​note>​ <​note>​
-**Un petit rappel ?**+Si l'on reprend le wiki ici ! Ou qu'on a lancé la commande ''​pyenv deactivate''​
  
-  ​On a crée un dossier par exemple sur son bureau ​pour l'​environnement virtuel ​python ​"​virtualenv PremiersProjetsDjango";​ +  ​On va dans son répertoire configuré ​pour python ​3 dans lequel est installé ​django 
-  - Dans ce dossier on a activé python "​source bin/​activate"​ ; +<code user>cd ~/ProjetsDjangoPy3/</​code>​ 
-  - On a installé ​Django. +<code user>pyenv activate ​1.8-3.4</​code>​
- +
-À partir de là pour créer un projet Django, il faut aller dans le dossier de l'​environnement virtuel python et activer python : +
- +
-<code user>cd ~/Bureau/​PremiersProjetsDjango/</​code>​ +
- +
-<code user>source bin/activate</​code>​ +
- +
-<code user>​python3 ​-c "​import django; print(django.get_version())"​</​code>​+
  
 </​note>​ </​note>​
  
-  ​* Le contenu de son dossier avant création d'un nouveau projet: +  * Pour créer ​le projet ​Django ​nommé par exemple "​premierProjet"​
- +
-<code user>​pwd</​code>​ +
-<code retour>/​home/​hypathie/​Bureau/​PremiersProjetsDjango</​code>​ +
- +
-<code user>​ls</​code>​ +
-<code retour>​bin ​ include ​ lib</​code>​ +
- +
-  ​* Pour créer ​un nouveau ​projet nommé par exemple "​premierProjet"​:+
  
 <code user>​django-admin.py startproject premierProjet</​code>​ <code user>​django-admin.py startproject premierProjet</​code>​
-<code user>​ls</​code>​ 
-<code retour>​bin ​ include ​ lib  premierProjet</​code>​ 
- 
-  * Architecture du dossier premierProjet : 
- 
-<code user>cd premierProjet/</​code>​ 
-<code retour>​manage.py ​ premierProjet</​code>​ 
- 
-<code user>cd premierProjet/</​code>​ 
-<code retour>​__init__.py ​ settings.py ​ urls.py ​ wsgi.py</​code>​ 
- 
-  * Avec la commande tree : 
  
 <code user>​tree premierProjet/</​code>​ <code user>​tree premierProjet/</​code>​
utilisateurs/hypathie/tutos/developpement-pyhon-utiliser-django.txt · Dernière modification: 06/01/2016 10:18 par Hypathie

Pied de page des forums

Propulsé par FluxBB