Translations:Python/40/fr: Difference between revisions
Jump to navigation
Jump to search
(Created page with "}} where the <tt>requirements.txt</tt> file will have been created from a test environment. For example, if you want to create an environment for Tensorflow, you would do...") |
No edit summary |
||
Line 1: | Line 1: | ||
}} | }} | ||
où le fichier <tt>requirements.txt</tt> aura été créé dans un environnement de test. Par exemple, pour créer un environnement pour [[TensorFlow/fr]], utilisez les commandes suivantes dans un nœud de connexion : | |||
{{Commands | {{Commands | ||
|module load python/3.6 | |module load python/3.6 |
Revision as of 18:32, 30 January 2019
}} où le fichier requirements.txt aura été créé dans un environnement de test. Par exemple, pour créer un environnement pour TensorFlow/fr, utilisez les commandes suivantes dans un nœud de connexion :
[name@server ~]$ module load python/3.6
[name@server ~]$ ENVDIR=/tmp/$RANDOM
[name@server ~]$ virtualenv --no-download $ENVDIR
[name@server ~]$ source $ENVDIR/bin/activate
[name@server ~]$ pip install --no-index tensorflow_gpu
[name@server ~]$ pip freeze > requirements.txt
[name@server ~]$ deactivate
[name@server ~]$ rm -rf $ENVDIR