Hi everyone,
When I deployed cert_isuer on Ubuntu, I made some errors. I spent my time fixing them. I want to share my steps with everyone. I hope this may help you
# Deploy cert-issuer on Ubuntu 16.04
### Clone the repo and change to the directory:
git clone https://github.com/blockchain-certificates/cert-issuer.git && cd cert-issuer
### Install requirements:
sudo apt install python3-pip python3-dev libssl-dev virtualenv
### I recommend using virtualenv to manage your python environments:
pip3 install virtualenv
virtualenv -p python3 venv
# If you have a warning:
# You are using pip version 8.1.1, however version 9.0.3 is available. You should consider upgrading via the 'pip install --upgrade pip' command.
# You can run: 'pip3 install -U pip'
Activate the environment:
source ./venv/bin/activate
This file has been truncated. show original
4 Likes