-
Notifications
You must be signed in to change notification settings - Fork 0
Installation
Raphael Constantinis edited this page Aug 3, 2025
·
2 revisions
The entropic-measurement package is now officially available on PyPI!
pip install entropic-measurement🔗 PyPI Package: https://pypi.org/project/entropic-measurement/
python -c "import entropic_measurement; print('Installation successful!')"- Python 3.8 or newer is required. Older Python versions are not supported.
- Ensure you have pip installed (
python -m ensurepip --upgrade). - Install the official package:
pip install entropic-measurement
- Verify installation:
python -c "import entropic_measurement; print(entropic_measurement.__version__)"
For development or the latest unreleased features:
-
Clone the repository:
git clone https://github.com/rconstant1/entropic_measurement.git cd entropic_measurement -
(Optional) Create and activate a virtual environment:
python -m venv venv source venv/bin/activate # On Windows: venv\Scripts\activate
-
Install dependencies:
pip install .Or for development mode:
pip install -e .
Using a virtual environment is recommended to avoid dependency conflicts:
# Create virtual environment
python -m venv entropic-env
# Activate (Linux/Mac)
source entropic-env/bin/activate
# Activate (Windows)
entropic-env\Scripts\activate
# Install package
pip install entropic-measurement- If 'pip' or 'python' commands fail, ensure your PATH includes your Python installation.
- For permission errors, try adding
--useror use a virtual environment. - If dependencies fail to install, check their documentation for platform-specific requirements or upgrade
pip(python -m pip install --upgrade pip). - For issues running the module, check your Python version (
python --version) and environment. -
Package name: Make sure to use
entropic-measurement(with hyphen) for pip install, notentropic_measurement.
To upgrade to the latest version:
pip install --upgrade entropic-measurementSee Issues to report problems or request help.