Advertisement
Guest User

Untitled

a guest
Jul 21st, 2017
46
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.38 KB | None | 0 0
  1. brew install numpy
  2. brew install scipy
  3. brew install matplotlib
  4. ---
  5. *VirtualEnv*
  6. $ mkvirtualenv ml
  7. $ cd .virtualenvs/ml/
  8. $ ln -s /usr/local/lib/python2.7/site-packages/{numpy,scipy}* lib/python2.7/site-packages/
  9. $ workon ml
  10. (ml) $ pip freeze | grep -i numpy
  11. (ml) $ pip install scikit-learn
  12. (ml) $ pip install tensorflow
  13. (ml) $ pip freeze | grep -i numpy
  14. (ml) $ deactivate (when done)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement