Python Package
To be added
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: