Skip to content

Latest commit

 

History

History
20 lines (16 loc) · 429 Bytes

File metadata and controls

20 lines (16 loc) · 429 Bytes

Python Flashcards

Description

To be completed.

Usage

Preparing an environment

# creating virtual environment
poetry env use python

# activating virtual environment
poetry shell  # runs new shell with activated virtual environment
# or
source $(poetry env info --path)/bin/activate  # for POSIX shell
source {path_to_venv}\Scripts\activate.bat  # for Windows

# installing dependencies
poetry install