- Head to the download website
- Click the latest version and download the
.msi
file
- Create
GOROOT
system variable if it doesn't exist inC:\Go
.msi
fileGOROOT
system variable if it doesn't exist in C:\Go
For reasons that we're in the middle of tracking down, some Windows users are having difficulties installing OpenBazaar 1.1.3. We have a possible fix to this problem. Please let us know in the comments whether it worked for you.
C:\Users\[your username]\AppData\Local\OpenBazaar
#!/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 |
These scripts will make your manual installation of OpenBazaar on your Linux machine or VPS a lot easier. To run the script:
nano
sudo apt-get install nano
(no sudo for Debian)sudo nano install.sh
First off I'm going to assume you have created a user with sudo
permissions, and that you're not running from root. I'm also assuming you have a satisfactory knowledge of the Linux terminal/bash commands.
If you have any trouble, join our OpenBazaar Slack group, and pop into the #openbazaar-ipfs
channel.
sudo nano install.sh
#!bin/bash | |
# README | |
# Give the script executable permissions by typing: sudo chmod +x install.sh | |
# Run the script: sudo bash install.sh | |
# Install Dependencies and Tools | |
sudo apt-get update && sudo apt-get upgrade | |
sudo apt-get install git build-essential autoconf automake pkg-config libtool htop tree |
#!/bin/bash | |
sudo apt-get install -y git build-essential libssl-dev libffi-dev python-dev openssl python-pip libsodium-dev autoconf libzmq-dev pkg-config libtool | |
sudo pip install cryptography | |
(cd /home/obuser/; sudo git clone https://github.com/OpenBazaar/OpenBazaar-Server.git) | |
(cd /home/obuser/OpenBazaar-Server; sudo pip install -r requirements.txt) |
#!/bin/bash | |
# Bash script to setup and install OpenBazaar on a VPS via miniprovistor | |
sudo apt-get update -y && sudo apt-get upgrade -y | |
useradd -m obuser | |
echo obuser:password | chpasswd # The password is replaced by the user during install | |
echo "obuser ALL=(ALL:ALL) ALL" >> /etc/sudoers | |
sudo apt-get install -y git build-essential libssl-dev libffi-dev python-dev openssl python-pip libsodium-dev autoconf libzmq-dev pkg-config libtool | |
sudo pip install cryptography | |
(cd /home/obuser/; sudo git clone https://github.com/OpenBazaar/OpenBazaar-Server.git) | |
(cd /home/obuser/OpenBazaar-Server; sudo pip install -r requirements.txt) |