Skip to content
This repository was archived by the owner on Sep 3, 2022. It is now read-only.

Latest commit

 

History

History
91 lines (57 loc) · 1.77 KB

File metadata and controls

91 lines (57 loc) · 1.77 KB

Pyweek-34-Rave-Sloths

Python Check

Python Modules

Python v3.10 Arcade v2.6.15

Other Dependencies

FFmpeg

Python venv setup

[SHOW/HIDE] Python venv setup
[SHOW/HIDE] Windows Instructions

Windows

Create the venv

cd GITHUB_REPO_ROOT_DIR
python -m venv venv

Activate the venv

cd GITHUB_REPO_ROOT_DIR
.\venv\Scripts\activate

Note: Your terminal will have (venv) prefixed to your current path.

Deactivate the venv

deactivate
[SHOW/HIDE] Linux Instructions

Linux

shell
cd GITHUB_REPO_ROOT_DIR
python3 -m venv venv

Activate the venv

cd GITHUB_REPO_ROOT_DIR
source venv\bin\activate

Note: Your terminal will have (venv) prefixed to your current path.

Deactivate the venv

deactivate

Install Dependencies

With venv activated, Windows pip install -r requirements.txt Linux pip3 install -r requirements.txt