This is the repository for my QML tutorial. There’s a couple of piece to take care of before we begin.
For this tutorial, you will need both Python 3 and Git
From the command prompt, in the convenient directory, run
git clone https://github.com/rprospero/qml-slides.git
cd qml-slides
git checkout tutorial
This will bring you onto the tutorial branch of the repo, which has all the code that we will be discussing.
We’ll need certain python dependencies. To not wreck your main python, we’ll establish a virtual environment.
python -m venv .venv
We then need to active the environment, which can depend on your shell
.venv\Scripts\Activate.ps1
.venv\Scripts\activate.bat
source .venv/bin/activate
Now that we’re in a custom python environment, we’ll need to install our dependencies
pip install -r requirements.txt
Once you have a working environment, access the slides to learn.