Skip to content

Instantly share code, notes, and snippets.

@varun19299
Created December 12, 2017 07:20
Show Gist options
  • Save varun19299/4601f494e427505ddffd3a3dca53c1e8 to your computer and use it in GitHub Desktop.
Save varun19299/4601f494e427505ddffd3a3dca53c1e8 to your computer and use it in GitHub Desktop.
Environment install Under WLS
echo "Will install all necessary dependencies for the workshop"
echo "Begin by upgrading shell and subsystem"
sudo apt-get update
sudo apt-get upgrade
echo "Installing gcc"
sudo apt-get install gcc make build-essential gfortran
echo "Installing Anaconda3"
wget https://repo.continuum.io/archive/Anaconda3-5.0.1-Linux-x86_64.sh
bash Anaconda3-5.0.1-Linux-x86_64.sh
conda update conda
conda update anaconda
cd /usr/local/bin
sudo ln -s ~/anaconda2/bin/* .
sudo ln -s ~/homer/.//bin/* .
cd ~
echo "Installing pip"
sudo apt-get install python-pip python-dev build-essential
sudo pip install --upgrade pip
echo "Installing magic wormhole"
pip install magic-wormhole
echo "Installing git"
apt-get install git
echo "Installing sshpass"
sudo apt-get install sshpass
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment