Last active
May 1, 2018 18:16
-
-
Save pjsier/06c03529c8cde7255f2ea0c3dd2d7e7c to your computer and use it in GitHub Desktop.
Bootstrap a City Scrapers environment on CodeAnywhere blank Ubuntu 14.04 container
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
#!/bin/bash | |
sudo apt-get update -y | |
sudo apt-get install -y python-software-properties software-properties-common | |
sudo add-apt-repository ppa:fkrull/deadsnakes -y | |
sudo apt-get update -y | |
sudo apt-get install -y python3.6 python3.6-dev python3.6-venv language-pack-en | |
wget https://bootstrap.pypa.io/get-pip.py | |
sudo python3.6 get-pip.py | |
rm get-pip.py | |
echo "export LC_ALL=en_GB.UTF-8" >> ~/.bashrc | |
echo "export LANG=en_GB.UTF-8" >> ~/.bashrc | |
source ~/.bashrc |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment