Skip to content

Files

Latest commit

 

History

History
46 lines (27 loc) · 1.01 KB

installation.rst

File metadata and controls

46 lines (27 loc) · 1.01 KB

Installation

Requirements

Before installing EnergyDataModel, ensure that you have the following:

  • Python 3.6 or later
  • pip (Python package manager)

Installing with pip

To install the latest stable release using pip, run the following command in your terminal:

pip install energydatamodel

To install the latest release from Github:

pip install git+https://github.com/rebase-energy/EnergyDataModel

To install in editable mode for development:

git clone https://github.com/rebase-energy/EnergyDataModel.git
cd EnergyDataModel
pip install -e .

Verifying Installation

To verify that EnergyDataModel has been successfully installed, you can run the following command:

python -c "import energydatamodel; print(energydatamodel.__version__)"

This should output the installed version of EnergyDataModel.