-
-
Save bzdk/45ea049bd6a3c8a7c3c0fca78843b1a3 to your computer and use it in GitHub Desktop.
Install Libsodium on Ubuntu 14.04.3 LTS Trusty
This file contains hidden or 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 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
For Ubuntu 16
sudo apt-get install libsodium-dev