-
Notifications
You must be signed in to change notification settings - Fork 0
Python
SaeHie Park edited this page Jan 4, 2021
·
6 revisions
sudo apt-get install virtualenv
sudo apt-get install python3-venv
Create and enter
virtualenv --system-site-packages -p python3 ./py3venv
source ./py3venv/bin/activate
Install packages
pip install --upgrade pip
pip install --upgrade setuptools
pip install --upgrade numpy
pip install --upgrade tensorflow-cpu
Exit
deactivate