Skip to content

Instantly share code, notes, and snippets.

@r-shekhar
Created April 14, 2017 18:02
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save r-shekhar/e41b53d59ac189ec90c99cb38a31a646 to your computer and use it in GitHub Desktop.
Save r-shekhar/e41b53d59ac189ec90c99cb38a31a646 to your computer and use it in GitHub Desktop.
Conda setup for Dask
#!/bin/bash
sudo apt update && sudo apt upgrade -y
sudo apt install s3cmd awscli -y
wget https://repo.continuum.io/miniconda/Miniconda3-4.2.12-Linux-x86_64.sh
bash Miniconda*sh -b -p ${HOME}/miniconda3
echo "export PATH=${HOME}/miniconda3/bin:${PATH}" >> ~/.bashrc
export PATH=${HOME}/miniconda3/bin:${PATH}
conda install -c conda-forge geopandas python-snappy dask distributed \
fastparquet fiona numba boto3 jupyter seaborn -y
ssh-keygen -t rsa -b 2048 -N "" -f .ssh/id_rsa
cat .ssh/id_rsa.pub >> .ssh/authorized_keys
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment