人人都可以做深度学习应用:入门篇

主要是看到这篇文章人人都可以做深度学习应用:入门篇,尝试学习下;算是第一次接触深度学习这块吧,涉及数学、算法的比较困难;前面主要在mac下安装python,等

人人都可以做深度学习应用:入门篇
http://mp.weixin.qq.com/s/FqL18z_t7NbrvmLI4Z9AvQ

上班族必备,日本小哥用深度学习开发识别老板的探测器(附源码)
http://mp.weixin.qq.com/s/o2htZxNlRMQZ2DQfUyawZQ

https://www.tensorflow.org/install/install_mac

用Tensorflow炒股效果如何
http://www.newsmth.net/nForum/#!article/Joke/3545128

Tensorflow | 回归分析
http://blog.csdn.net/xxzhangx/article/details/54836530

/System/Library/Frameworks/Python.framework

Mac Python路径总结
http://blog.csdn.net/a542551042/article/details/47149959

https://www.tensorflow.org/install/install_mac


proxychains4  -q /bin/bash

// pip命令
// -bash: pip: command not found
$ sudo easy_install pip

$ sudo pip install xUnique


// 安装pip
$ curl https://bootstrap.pypa.io/get-pip.py | python


安装完成python3后默认就有pip3了.


$ pip -V  # for Python 2.7
$ pip3 -V # for Python 3.n 


// tensorflow建议pip或pip3是8.1以上的版本;更新pip或pip3
$ sudo easy_install --upgrade pip
$ sudo easy_install --upgrade six 



$ pip3 install tensorflow 
Installing collected packages: six, protobuf, numpy, tensorflow
Successfully installed numpy-1.12.0 protobuf-3.2.0 six-1.10.0 tensorflow-1.0.0


通过pip list命令可以查看我们安装的python组件:

$ pip3 install -U tensorflow

Installing collected packages: appdirs, pyparsing, packaging, setuptools
  Found existing installation: setuptools 32.2.0
    Uninstalling setuptools-32.2.0:
      Successfully uninstalled setuptools-32.2.0
Successfully installed appdirs-1.4.1 packaging-16.8 pyparsing-2.1.10 setuptools-34.3.0


NameError:name 'xrange' is not defined
http://blog.csdn.net/u010412719/article/details/47088095

若你想在python 3中运行程序,将xrange( )函数全部换为range( )即可

《leetCode》:Convert String to Integer
http://blog.csdn.net/u010412719/article/details/49536655

你可能感兴趣的:(人人都可以做深度学习应用:入门篇)