How to install tensorflow easily in ubuntu
Step 1
go to tensorflow install
Type
>>>python3 --version
# this checks the version of python
>>>pip3 --version
if not installed pip then type
sudo python install pip
Step 2
sudo apt update
sudo apt install python3-dev python3-pip python3-venv
The commands above are for Linux and they update the system and install python libraries
#The command above installs a virtual environment
Enter command
# this command activates the virtual environment
pip install --upgrade pip
pip list
command above update the pip package
Step 7
Congrats you installed it
Troubleshoot
pip not found
install pip
sudo apt install pip
No comments:
Post a Comment