Déplacez la souris sur la partie titre de la fenêtre d'invite de commande, cliquez avec le bouton droit de la souris et sélectionnez "Propriétés" Cochez toutes les cases "Modifier les options"
$ python -V
Python 2.7.6 est installé
$ sudo apt-get install python-pip python-dev
Utilisez environ 155 Mo Entrez "Y"
$ sudo pip install --upgrade https://storage.googleapis.com/tensorflow/linux/cpu/tensorflow-0.7.1-cp27-none-linux_x86_64.whl
Démarrer python
$ python
>>> import tensorflow as tf
>>> sess = tf.Session()
>>> a = tf.constant(2)
>>> b = tf.constant(3)
>>> sess.run(a+b)
5
>>>
Essayez d'utiliser Bash sur Windows 10 1 (http://qiita.com/rightoffreedom/items/3265eed2a3d2a207f594)
Recommended Posts