Skip to content

Latest commit

 

History

History
25 lines (16 loc) · 1.48 KB

install.md

File metadata and controls

25 lines (16 loc) · 1.48 KB

Install Dependencies

  1. Install Docker Desktop
  2. Install VS Code
  3. Verify Python installation: python --version. Should be Python 3.9.x or above. I am using Python 3.11.x for the workshop today

Replace python with python3 depending on how Python 3 is configured on your machine

  1. Verify git is installed: git --version. Github Desktop is a handy UI tool if you have trouble setting up git on the terminal
  2. Clone the Github repo: github.com/allentv/pycon2023-docker-desktop
  3. Setup a new virtual environment: python -m venv .venv in the cloned folder
  4. Activate virtual environment with source ./.venv/bin/activate. Your terminal prompt should be updated with (.venv) at the beginning
  5. Install python packages: pip install -r requirements.txt

Replace pip with pip3 depending on how Python 3 is configured on your machine


Windows Users

Use powershell for running all commands. Some of the above steps should be replaced by the below to work on powershell

  1. Install Docker Desktop
  2. Activate virtual environment with .\.venv\bin\activate. Your terminal prompt should be updated with (.venv) at the beginning