Translations:Python/40/fr: Difference between revisions
Jump to navigation
Jump to search
No edit summary |
No edit summary |
||
Line 8: | Line 8: | ||
|pip install --no-index --upgrade pip | |pip install --no-index --upgrade pip | ||
|pip install --no-index tensorflow | |pip install --no-index tensorflow | ||
|pip freeze > requirements.txt | |pip freeze --local > requirements.txt | ||
|deactivate | |deactivate | ||
|rm -rf $ENVDIR | |rm -rf $ENVDIR | ||
}} | }} |
Revision as of 14:23, 25 September 2022
}} où le fichier requirements.txt aura été créé dans un environnement de test. Par exemple, pour créer un environnement pour TensorFlow, utilisez les commandes suivantes dans un nœud de connexion :
[name@server ~]$ module load python/3.10
[name@server ~]$ ENVDIR=/tmp/$RANDOM
[name@server ~]$ virtualenv --no-download $ENVDIR
[name@server ~]$ source $ENVDIR/bin/activate
[name@server ~]$ pip install --no-index --upgrade pip
[name@server ~]$ pip install --no-index tensorflow
[name@server ~]$ pip freeze --local > requirements.txt
[name@server ~]$ deactivate
[name@server ~]$ rm -rf $ENVDIR