#!/bin/sh
#
#This will install the software we shall use in the examples.

python3 -m venv qubo
source ./qubo/bin/activate
pip3 install wheel
pip3 install networkx
pip3 install dwave-ocean-sdk
pip3 install matplotlib
