====== Differences ====== This shows you the differences between two versions of the page.
Next revision | Previous revision | ||
criquet_installation [2017/04/14 09:06] flavio created |
criquet_installation [2017/04/14 13:07] (current) flavio |
||
---|---|---|---|
Line 1: | Line 1: | ||
Notes d'installation pour le proto criquet | Notes d'installation pour le proto criquet | ||
+ | python3.5 | ||
+ | sudo apt-get install libssl-dev openssl | ||
+ | wget https://www.python.org/ftp/python/3.5.3/Python-3.5.3.tgz | ||
+ | tar xzvf Python-3.5.3.tgz | ||
+ | cd Python-3.5.3 | ||
+ | ./configure --enable-optimizations | ||
+ | make | ||
+ | sudo make install | ||
Virtualenv | Virtualenv | ||
Line 30: | Line 38: | ||
creation de l'environnement | creation de l'environnement | ||
- | python3 -m venv /u/criquet | + | python3.5 -m venv /u/criquet |
source ./bin/activate | source ./bin/activate | ||
Line 36: | Line 44: | ||
maintenant on se trouve dans l'environnement si on voit bien le nom du projet entre parentheses en debut de ligne. Toute nouvelle installation de lib se fera seulement dans cet environnement : | maintenant on se trouve dans l'environnement si on voit bien le nom du projet entre parentheses en debut de ligne. Toute nouvelle installation de lib se fera seulement dans cet environnement : | ||
- | pip3 install py2neo | + | pip3.5 install py2neo |
+ | pip3.5 install tornado | ||
+ | pip3.5 install devpy | ||