This package provides tools to process and handle battery cycler experimental data. Examples on how to run this package can be found in the examples folder
pip install virtualenv
The module dependencies are listed in pyproject.toml
, the dependancies which are non optional which are installed with the package.
The optional dependencies are split into dev
and docs
. dev
are used for testing and linting, docs
are used for building the sphinx documentation.
-
Create a virtual environment (this is strongly recommended to avoid clashes with the dependencies)
virtualenv --python="<path to python 3.11>" env
-
Activate the virtual environment
source env/bin/activate
The virtual environment can later be deactivated (if needed) by running
deactivate
-
Install packages into the virtual environment
pip install -e ./[dev,docs]
-
Create a virtual environment (this is strongly recommended to avoid clashes with the dependencies)
python -m virtualenv env
-
Activate the virtual environment
env\Scripts\activate.bat
The virtual environment can later be deactivated (if needed) by running
deactivate
-
Install package
pip install -e .\\[dev,docs]