Install tensorflow
I'm just putting in what I thought I was commanding today, and I'm not sure if it's correct.
pyenv is for changing the state of python in your computer pyenv versions → You can see everything in pyenv pyenv version → Change the state of python that is currently set Set to ~~ in pyenv with pyenv global ~~ If you download something, you should pyenv rehash
Code to test if tensorflow is included
(tensorflow0.9.0) $ python
>>> import tensorflow as tf
>>> hello = tf.constant('Hello, TensorFlow!')
>>> sess = tf.Session()
>>> print(sess.run(hello))
Hello, TensorFlow!
>>> a = tf.constant(10)
>>> b = tf.constant(32)
>>> print(sess.run(a + b))
42
>>>
I wanted to include matplotlib
pyenv global py351tensorflow Touchi Within this version
I did pip install matplotlib → Successful.
The one installed with pip is Does it only apply to the same version within the pyenv version? Or is it still unknown if it applies to all versions → Maybe all versions are missing ,,,
Because matlibplot wasn't working properly http://qiita.com/katryo/items/918667f28301fdec89ba Fixed to work normally using