Skip to content

Instantly share code, notes, and snippets.

@codecakes
Forked from jonathanpmartins/install-libsodium.sh
Created August 10, 2016 12:42
Show Gist options
  • Save codecakes/9a8ccd2a52a9d6bc80ed6f878544e172 to your computer and use it in GitHub Desktop.
Save codecakes/9a8ccd2a52a9d6bc80ed6f878544e172 to your computer and use it in GitHub Desktop.
Install Libsodium on Ubuntu 14.04.3 LTS Trusty
#!/bin/bash
sudo add-apt-repository ppa:chris-lea/libsodium;
sudo echo "deb http://ppa.launchpad.net/chris-lea/libsodium/ubuntu trusty main" >> /etc/apt/sources.list;
sudo echo "deb-src http://ppa.launchpad.net/chris-lea/libsodium/ubuntu trusty main" >> /etc/apt/sources.list;
sudo apt-get update && sudo apt-get install libsodium-dev;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment