Summary and Setup

This is a new lesson built with The Carpentries Workbench.

Software Setup


Discussion

Details

Git for Windows. Command Prompt/Powershell might be OK as well.

Use Terminal.app

Use Terminal

  • Make a folder for the exercises
mkdir qmi_course
cd qmi_course
  • Make a virtual environment for running exercises
python -m venv venv
# Linux / MacOS Terminal
source venv/bin/activate
# Git bash on Windows
source venv/Scripts/activate
# Powershell, with possibly requred step to enable running scripts
set-executionpolicy RemoteSigned -Scope CurrentUser
.\venv\Scripts\Activate.ps1
  • Install open-source QMI with Pip
pip install qmi
  • Handy to have: IDE software, like PyCharm.