Installation/Updates
Using PIP to Install from PyPI
The following instruction are using PIP (Package Installer for Python) as a package manager and PyPI (Python Package Index) as a source of Python packages.
Installing a Wheel Package from PyPI using PIP
# Basic pyTooling package
pip3 install pyEDAA.Reports
# Basic pyTooling package
pip install pyEDAA.Reports
Developers can install further dependencies for documentation generation (doc
) or running unit tests (test
) or
just all (all
) dependencies.
# Install with dependencies to generate documentation pip3 install pyEDAA.Reports[doc]
# Install with dependencies to run unit tests pip3 install pyEDAA.Reports[test]
# Install with all developer dependencies pip install pyEDAA.Reports[all]
# Install with dependencies to generate documentation pip install pyEDAA.Reports[doc]
# Install with dependencies to run unit tests pip install pyEDAA.Reports[test]
# Install with all developer dependencies pip install pyEDAA.Reports[all]
Updating from PyPI using PIP
pip install -U pyEDAA.Reports
pip3 install -U pyEDAA.Reports
Uninstallation using PIP
pip uninstall pyEDAA.Reports
pip3 uninstall pyEDAA.Reports
Using setup.py
(legacy)
See sections above on how to use PIP.
Installation using setup.py
setup.py install
Local Packaging and Installation via PIP
For development and bug fixing it might be handy to create a local wheel package and also install it locally on the
development machine. The following instructions will create a local wheel package (*.whl
) and then use PIP to
install it. As a user might have a pyEDAA.Reports installation from PyPI, it’s recommended to uninstall any previous
pyEDAA.Reports packages. (This step is also needed if installing an updated local wheel file with same version number.
PIP will not detect a new version and thus not overwrite/reinstall the updated package contents.)
Ensure packaging requirements are installed.
cd <pyEDAA.Reports>
# Package the code in a wheel (*.whl)
python -m build --wheel
# Uninstall the old package
python -m pip uninstall -y pyEDAA.Reports
# Install from wheel
python -m pip install ./dist/pyEDAA.Reports-0.1.0-py3-none-any.whl
cd <pyEDAA.Reports>
# Package the code in a wheel (*.whl)
py -m build --wheel
# Uninstall the old package
py -m pip uninstall -y pyEDAA.Reports
# Install from wheel
py -m pip install .\dist\pyEDAA.Reports-0.1.0-py3-none-any.whl