Skip to content

Instantly share code, notes, and snippets.

@omenking
Last active November 2, 2024 01:33
Show Gist options
  • Save omenking/321051d8512f18e900b3ee2fef7efcf9 to your computer and use it in GitHub Desktop.
Save omenking/321051d8512f18e900b3ee2fef7efcf9 to your computer and use it in GitHub Desktop.
Setup Conda, JupyterLabs
#!/bin/bash
mkdir -p /home/ubuntu/miniconda3
wget https://repo.anaconda.com/miniconda/Miniconda3-latest-Linux-x86_64.sh -O /home/ubuntu/miniconda3/miniconda.sh
bash /home/ubuntu/miniconda3/miniconda.sh -b -u -p /home/ubuntu/miniconda3
rm /home/ubuntu/miniconda3/miniconda.sh
source /home/ubuntu/miniconda3/bin/activate
conda init --all
conda create --name openvino python=3.10.0 -y
conda activate openvino
conda install -c conda-forge tensorflow jupyterlab -y
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment