Python Package

To be added

Table of contents
  1. Basic structure of a Python package
  2. Install package
    1. Editable (development) mode

Basic structure of a Python package

To be added


Install package

Editable (development) mode

To install a package in editable mode, you must have defined the package in a setup.py file.

Navigate to the package directory and run:

pip3 install --editable .
# OR
pip3 install -e .

References: