You are on page 1of 1

Mise en place de

l'environnement pour la
formation d'IA (version texte)

Environnement: formation-IA

Télécharger le fichier formation-IA.yml puis sur Anaconda Navigator,


allez dans Environments / import. Sélectionner le le fichier formation-
IA.yml puis ouvrir Spyder sur l'environnement formation-IA.

Tester:
1. import cv2
2. print(cv2.__version__)

et
1. import tensorflow as tf
2. hello = tf.constant('Hello, TensorFlow!')
3. with tf.Session() as sess:
4. sess.run(hello)

You might also like