Skip to content

Instantly share code, notes, and snippets.

@nik1806
Last active June 2, 2022 21:40
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save nik1806/5b40c42261a8257385eee3155a162f78 to your computer and use it in GitHub Desktop.
Save nik1806/5b40c42261a8257385eee3155a162f78 to your computer and use it in GitHub Desktop.
# https://computingforgeeks.com/how-to-install-python-on-ubuntu-linux-system/
sudo apt install software-properties-common -y
sudo add-apt-repository ppa:deadsnakes/ppa
sudo apt install python3.10
sudo apt install python3.10-venv
sudo apt install python3.10-dev
sudo apt install python3.10-minimal
sudo apt install python3.10-distutils
cd ~ && mkdir pyenvs && cd pyenvs
python3.10 -m venv dlstudio
source ~/pyenvs/dlstudio/bin/activate
python3 -m pip install -U pip
cd ~
git clone https://github.com/JdeRobot/DeepLearningStudio DeepLearningStudio
cd DeepLearningStudio
pip install -r requirements.txt
# upgrade packages in requirement.txt - # Open the text file, replace the == with >=
# pip install -r requirements.txt --upgrade
# pip freeze > requirements.txt
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment