ubuntu17.10 python3.6 install plugins for AI

install order:

tensorflow-gpu 
scikit-learn 
numpy 
scipy 
matplotlib 
tkinter

tensorflow-gpu :

pip install tensorflow-gpu==1.3
#work well with python3.6 and cuda8.0

scikit-learn:

pip install scikit-learn

numpy:

pip install numpy
#maybe is installed by tensorflow-gpu

scipy:

pip install scipy

matplotlib:

pip install matplotlib

tkinter:

1. apt-get install python3-tk
2. tcl和tk的下载地址:http://www.tcl.tk/software/tcltk/download.html
tar -zvxf tcl8.4.4.tar.gz cd tcl8.4..4/ cd unix ./configure make make install 此时键入命令tclsh,就可以使用tcl了
tar
-zvxf tk8.4.4.tar.gz cd tk8.4.4/ cd unix ./configure make make install 执行wish就可以使用tk了 3. 重新make Python: cd $python-dir ./configure make make install
原文地址:https://www.cnblogs.com/jiu0821/p/8419917.html