Last active
November 2, 2024 01:33
-
-
Save omenking/321051d8512f18e900b3ee2fef7efcf9 to your computer and use it in GitHub Desktop.
Setup Conda, JupyterLabs
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/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