Skip to content

TimoDiepers/bw_timex_app

bw_timex_app

PyPI - Version Conda Version Conda - License

Installation

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:

Linux, Windows, or MacOS (x64)

conda create -n timex_app -c conda-forge -c cmutel -c diepers brightway25 bw_timex_app

macOS (Apple Silicon/ARM)

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

Running the App

To run the bw_timex_app, just do the following:

  1. Activate the environment:
conda activate timex_app
  1. Run the app:
bw-timex

Contributing

Contributions are very welcome. To learn more, see the Contributor Guide.

License

Distributed under the terms of the BSD 3 Clause license, bw_timex_app is free and open source software.

Issues

If you encounter any problems, please file an issue along with a detailed description.

Building the Documentation

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