Development¶
Setting up a development environment only requires a few steps, and is similar on each platform.
Install Python 3.6+ using standard installer processes (apt on Linux, brew on Mac, and Windows packages from Pythons website).
Clone EnergyPlus-Launch repository using Git:
git clone https://github.com/NREL/EP-LaunchChange into the cloned directory:
cd EP-LaunchSet up a virtual environment where the Python dependencies can be installed using
python3 -m venv .\venvActivate the virtual environment as needed (activate scripts will live in venv/bin/…)
Install dependencies using
pip install -r requirements.txtAt this point you should be able to run EnergyPlus-Launch:
python3 eplaunch\runner.pyorpython3 -m eplaunchYou can also run the test suite by executing the nose test binary:
nosetests