To install the bw_timex_app
, just install the package in a new Conda environment (in this example named timex_app
).
Depending on your operating system, you need to install a slightly different version:
conda create -n timex_app -c conda-forge -c cmutel -c diepers brightway25 bw_timex_app
conda create -n timex_app -c conda-forge -c cmutel -c diepers brightway25_nosolver scikit-umfpack numpy==1.24 matplotlib==3.5.2 bw_timex_app
To run the bw_timex_app
, just do the following:
- Activate the environment:
conda activate timex_app
- Run the app:
bw-timex
Contributions are very welcome. To learn more, see the Contributor Guide.
Distributed under the terms of the BSD 3 Clause license, bw_timex_app is free and open source software.
If you encounter any problems, please file an issue along with a detailed description.
You can build the documentation locally by installing the documentation Conda environment:
conda env create -f docs/environment.yml
activating the environment
conda activate sphinx_bw_timex_app
and running the build command:
sphinx-build docs _build/html --builder=html --jobs=auto --write-all; open _build/html/index.html