- Check requirements:
- Python 3.7
- Gurobi Optimizer
- Clone or download repository.
- In your Python environment, run:
pip install -e path_to_repositorypip install -e path_to_repository/cobmo
The following installation procedure contains additional steps and requirements which can improve the numerical performance when running FLEDGE.
- Check requirements:
- Anaconda Distribution (Python 3.x version)
- Gurobi Optimizer or CPLEX Optimizer
- Clone or download repository.
- In Anaconda Prompt, run:
conda create -n fledge python=3.7conda activate fledgeconda install pandaspip install -e path_to_repository.pip install -e path_to_repository/cobmo
- In
fledge/config.py, changesolver_nameto'gurobi'or'cplex'.
If you are running into errors when installing or running FLEDGE, this may be due to incompatibility with new versions of package dependencies, which have yet to be discovered and fixed. As a workaround, try installing FLEDGE in an tested Anaconda environment via the the provided environment.yml, which represents the latest Anaconda Python environment in which FLEDGE was tested and is expected to work.
- Check requirements:
- Windows 10
- Anaconda Distribution (Python 3.x version)
- Gurobi Optimizer
- Clone or download repository.
- In Anaconda Prompt, run:
conda env create -f path_to_fledge_repository/environment.ymlconda activate fledgepip install -e path_to_repository.pip install -e path_to_repository/cobmo
Please also create an issue on Github if you run into problems with the normal installation procedure.
The examples directory contains run scripts which demonstrate possible usages of FLEDGE. You may also check the test directory for further examples.
If you are keen to contribute to this project, please see Contributing.