Created
April 27, 2019 10:45
-
-
Save gaiar/cf0f52aef9fabb35f594162cf32be02d to your computer and use it in GitHub Desktop.
Installing Python packages for Web Scrapping
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
#!/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