Difference between revisions of "TensorFlow: Instalasi Ubuntu 20.04"
Jump to navigation
Jump to search
Onnowpurbo (talk | contribs) (Created page with "Install sudo apt update sudo apt install python-pip sudo -H pip install tensorflow Untuk python3 bisa (kayanya tidak recommended) sudo apt update sudo apt install pyth...") |
Onnowpurbo (talk | contribs) |
||
(2 intermediate revisions by the same user not shown) | |||
Line 1: | Line 1: | ||
− | |||
sudo apt update | sudo apt update | ||
− | sudo apt install | + | sudo apt install python3-pip |
− | sudo -H | + | sudo -H pip3 install tensorflow keras |
+ | |||
+ | ==Menggunakan Conda== | ||
− | + | conda create -n tf tensorflow | |
+ | conda activate tf | ||
− | |||
− | |||
− | |||
==Install Apps Pendukung== | ==Install Apps Pendukung== | ||
− | sudo apt install | + | sudo apt install spyder3 |
sudo pip install matplotlib pandas scipy sklearn seaborn features | sudo pip install matplotlib pandas scipy sklearn seaborn features | ||
Latest revision as of 08:18, 24 December 2020
sudo apt update sudo apt install python3-pip sudo -H pip3 install tensorflow keras
Menggunakan Conda
conda create -n tf tensorflow conda activate tf
Install Apps Pendukung
sudo apt install spyder3 sudo pip install matplotlib pandas scipy sklearn seaborn features