Skip to content

Instantly share code, notes, and snippets.

@drwasho
Created April 24, 2016 21:41
Show Gist options
  • Save drwasho/7db58b947d8f40f7999e99dc7e550621 to your computer and use it in GitHub Desktop.
Save drwasho/7db58b947d8f40f7999e99dc7e550621 to your computer and use it in GitHub Desktop.
Alternative install script for Ubuntu 15.10
#!/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