Skip to content

Instantly share code, notes, and snippets.

@drwasho
Last active April 15, 2016 02:52
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save drwasho/3ba25d6e8012e6d312f0621adf0fde30 to your computer and use it in GitHub Desktop.
Save drwasho/3ba25d6e8012e6d312f0621adf0fde30 to your computer and use it in GitHub Desktop.
Install the OpenBazaar server in one simple script for Ubuntu 14.04 (Trusty)
#!/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 add-apt-repository ppa:chris-lea/libsodium
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)
@mrnejc
Copy link

mrnejc commented Apr 8, 2016

please fix the Shebang line

Its #! not !# ;)

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