Created
October 3, 2016 09:22
-
-
Save mludi/f9ef0258df7164f9a891b9bcaa26e682 to your computer and use it in GitHub Desktop.
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 | |
cd ~ | |
sudo apt-get update -y | |
sudo apt-get install clang libicu-dev binutils git -y | |
sudo apt-get install libcurl4-openssl-dev -y | |
sudo apt-get install libpython2.7 libpython2.7-dev -y | |
sudo apt-get install libmysqlclient-dev -y | |
wget https://swift.org/builds/swift-3.0-release/ubuntu1510/swift-3.0-RELEASE/swift-3.0-RELEASE-ubuntu15.10.tar.gz | |
tar zxf swift-3.0-RELEASE-ubuntu15.10.tar.gz | |
sudo mv swift-3.0-RELEASE-ubuntu15.10 /swift-3.0 | |
echo "export PATH=/swift-3.0/usr/bin:\"\${PATH}\"" >> ~/.bashrc | |
source ~/.bashrc | |
curl -sL check.vapor.sh | bash | |
curl -sL toolbox.vapor.sh | bash |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment