Last active
March 26, 2022 18:56
-
-
Save FrankieWOO/a3a1155fdfc1ede94afe500db605d7a3 to your computer and use it in GitHub Desktop.
Setup Ubuntu 20.04 machine
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
# essentials | |
sudo apt-get update | |
sudo apt-get install -y build-essential git ssh openssl libssl-dev openvpn net-tools nmap fping curl gcc g++ | |
sudo apt-get upgrade -y | |
# Install Anaconda | |
cd Downloads | |
wget https://repo.anaconda.com/archive/Anaconda3-2021.11-Linux-x86_64.sh | |
sudo chmod +x Anaconda3-2021.11-Linux-x86_64.sh | |
bash Anaconda3-2021.11-Linux-x86_64.sh | |
conda config --set auto_activate_base false | |
# install libmamba | |
conda update -n base conda | |
conda install -n base conda-libmamba-solver |
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
# essentials | |
sudo apt-get update | |
sudo apt-get install -y build-essential git ssh openssl libssl-dev openvpn net-tools nmap fping curl gcc g++ | |
sudo apt-get upgrade -y | |
# install miniconda or miniforge | |
wget -O Miniforge3.sh https://github.com/conda-forge/miniforge/releases/latest/download/Miniforge3-$(uname)-$(uname -m).sh | |
bash Miniforge3.sh -b | |
rm Miniforge3.sh |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment