Skip to content

Commit

Permalink
Changed python3 back to python
Browse files Browse the repository at this point in the history
In section "Get Started", the examples should read without the `3` suffix after `python`. Most users here use Windows machines. Instead, add a short notice before the examples for Linux users.
  • Loading branch information
ojdo authored Jun 14, 2016
1 parent e513532 commit de0ba33
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -75,17 +75,17 @@ Continue at [Get Started](#get-started).

Once installation is complete, finally [install git (for version control)](http://git-scm.com/). **Remark:** at step "Adjusting your PATH environment", select "Run Git from the Windows Command Prompt".

Then, in a directory of your choice, clone this repository and execute the runme script by executing the following on the command prompt (Windows) or Terminal (Linux):
Then, in a directory of your choice, clone this repository and execute the runme script by executing the following on the command prompt (Windows) or Terminal (Linux). (Under Linux, you most likely need to call `python3` instead of `python`.):

git clone https://github.com/tum-ens/urbs.git
cd urbs
python3 runme.py
python runme.py

About a minute later, the subfolder `result` should contain plots and summary spreadsheets for multiple optimised energy supply scenarios, whose definitions are contained in the run script (watch out for `def scenario` lines). To get a graphical and tabular summary over all scenarios, execute
Some minutes later, the subfolder `result` should contain plots and summary spreadsheets for multiple optimised energy supply scenarios, whose definitions are contained in the run script (watch out for `def scenario` lines). To get a graphical and tabular summary over all scenarios, execute

python3 comp.py
python comp.py

and look at the new files `result/mimo-example-20160101T1234/comp.xlsx` and `result/mimo-example-20160101T1234/comp.png` for a quick comparison. This script parses the summary spreadsheets for all scenarios.
and look at the new files `result/mimo-example-.../comp.xlsx` and `result/mimo-example-.../comp.png` for a quick comparison. This script parses the summary spreadsheets for all scenarios.

## Next steps

Expand Down

0 comments on commit de0ba33

Please sign in to comment.