Skip to content

Instantly share code, notes, and snippets.

@skreutzberger
Last active November 9, 2017 02:25
Show Gist options
  • Star 4 You must be signed in to star a gist
  • Fork 2 You must be signed in to fork a gist
  • Save skreutzberger/64738215ac7c57aaa3dbd5a6d9e85f27 to your computer and use it in GitHub Desktop.
Save skreutzberger/64738215ac7c57aaa3dbd5a6d9e85f27 to your computer and use it in GitHub Desktop.
Install Swift 3.0.1 on Ubuntu
sudo apt-get install clang libicu-dev libcurl4-openssl-dev lldb git wget unzip -y
wget https://swift.org/builds/swift-3.0.1-release/ubuntu1604/swift-3.0.1-RELEASE/swift-3.0.1-RELEASE-ubuntu16.04.tar.gz
tar zxf swift-3.0.1*.tar.gz && rm -rf swift-3.0.1*.tar.gz
sudo mv swift-3.0.1* /swift-3.0.1
echo "export PATH=/swift-3.0.1/usr/bin:\"\${PATH}\"" >> ~/.bashrc
source ~/.bashrc
@briannadoubt
Copy link

This is phenomenally helpful THANK YOUUUU

@alexcros
Copy link

thanks!

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment