Skip to content

Instantly share code, notes, and snippets.

@pjsier
Last active May 1, 2018 18:16
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 pjsier/06c03529c8cde7255f2ea0c3dd2d7e7c to your computer and use it in GitHub Desktop.
Save pjsier/06c03529c8cde7255f2ea0c3dd2d7e7c to your computer and use it in GitHub Desktop.
Bootstrap a City Scrapers environment on CodeAnywhere blank Ubuntu 14.04 container
#!/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