-
-
Save elejke/3437be39478c66a3efac26700cb14334 to your computer and use it in GitHub Desktop.
Install Miniforge (Minimal conda installation) in Ubuntu arm64 / aarch64
This file contains 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
# Setup Ubuntu | |
sudo apt update --yes | |
sudo apt upgrade --yes | |
# Get Miniforge and make it the main Python interpreter | |
wget https://github.com/conda-forge/miniforge/releases/latest/download/Miniforge3-Linux-aarch64.sh -O ~/miniforge.sh | |
bash ~/miniforge.sh -b -p ~/miniforge | |
rm ~/miniforge.sh | |
echo "PATH=$PATH:$HOME/miniforge/bin" >> .bashrc | |
source .bashrc |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment