Last active
April 15, 2016 02:52
-
-
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)
This file contains 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 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) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
please fix the Shebang line
Its
#!
not!#
;)