Created
April 24, 2016 21:41
-
-
Save drwasho/7db58b947d8f40f7999e99dc7e550621 to your computer and use it in GitHub Desktop.
Alternative install script for Ubuntu 15.10
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 apt-get update && sudo apt-get upgrade | |
sudo apt-get install git | |
sudo apt-get install build-essential libssl-dev libffi-dev python-dev openssl python-pip libzmq3-dev | |
sudo echo "deb http://us.archive.ubuntu.com/ubuntu vivid main universe" | sudo tee -a /etc/apt/sources.list | |
sudo apt-get update | |
sudo apt-get -f install | |
sudo apt-get install libsodium-dev | |
sudo pip install cryptography | |
sudo apt-get install autoconf pkg-config libtool | |
sudo git clone https://github.com/zeromq/libzmq | |
(cd /home/libzmq; sudo ./autogen.sh && sudo ./configure && sudo make -j 4) | |
(cd /home/libzmq; sudo make check && sudo make install && sudo ldconfig) | |
sudo git clone https://github.com/OpenBazaar/OpenBazaar-Server.git | |
(cd /home/OpenBazaar-Server; sudo pip install -r requirements.txt) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment