Skip to content

Instantly share code, notes, and snippets.

@gaiar
Created April 27, 2019 10:45
Show Gist options
  • Save gaiar/cf0f52aef9fabb35f594162cf32be02d to your computer and use it in GitHub Desktop.
Save gaiar/cf0f52aef9fabb35f594162cf32be02d to your computer and use it in GitHub Desktop.
Installing Python packages for Web Scrapping
#!/usr/bin/env bash
sudo apt update
sudo apt install wget -y
wget https://repo.anaconda.com/miniconda/Miniconda3-latest-Linux-x86_64.sh -O ~/miniconda.sh
bash ~/miniconda.sh -b -p $HOME/miniconda
eval "$(~/miniconda/bin/conda shell.bash hook)"
conda init
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment