Difference between revisions of "Machine Learning"

From Hawk Wiki
Jump to: navigation, search
(Created page with "==install keras and tensorflow cpu on ubuntu 16== <pre> sudo add-apt-repository ppa:jonathonf/python-3.6 sudo apt-get update sudo apt-get install python3.6 sudo update-alterna...")
 
(install keras and tensorflow cpu on ubuntu 16)
 
Line 5: Line 5:
 
sudo apt-get install python3.6
 
sudo apt-get install python3.6
 
sudo update-alternatives --install /usr/bin/python3 python3 /usr/bin/python3.6 2
 
sudo update-alternatives --install /usr/bin/python3 python3 /usr/bin/python3.6 2
sudo apt-get install python-numpy python-scipy python-matplotlib
+
sudo apt-get install python-numpy python-scipy python-matplotlib python3-gdbm python3-pip
sudo apt-get install python3-gdbm python3-pip
+
 
pip3 install tensorflow keras
 
pip3 install tensorflow keras
 
</pre>
 
</pre>

Latest revision as of 17:30, 9 July 2018

install keras and tensorflow cpu on ubuntu 16

sudo add-apt-repository ppa:jonathonf/python-3.6
sudo apt-get update
sudo apt-get install python3.6
sudo update-alternatives --install /usr/bin/python3 python3 /usr/bin/python3.6 2
sudo apt-get install python-numpy python-scipy python-matplotlib python3-gdbm python3-pip
pip3 install tensorflow keras