Skip to content
This repository has been archived by the owner on May 16, 2019. It is now read-only.

How to install on Ubuntu

Luca Weiss edited this page Dec 5, 2015 · 6 revisions

Installing the OpenBazaar Server on Ubuntu

  • Install all required dependencies via apt-get:

sudo apt-get install python-dev libffi-dev python-setuptools

  • Install pip:

sudo easy_install pip

  • Clone the Server repository:

git clone https://github.com/OpenBazaar/OpenBazaar-Server

  • Install all required Python modules:
cd OpenBazaar-Server
sudo -H pip install -r requirements.txt
sudo -H pip install -r test_requirements.txt
  • Run checks (not required): make

  • Start the Server python openbazaard.py start --testnet


Troubleshooting

AttributeError: 'module' object has no attribute 'PROTOCOL_SSLv3'

Upgrade the requests module: sudo -H pip install --upgrade requests