Skip to content

Commit

Permalink
respond to Ben's comments
Browse files Browse the repository at this point in the history
  • Loading branch information
grgmiller committed Dec 29, 2023
1 parent 0f1621e commit 1d0e7c7
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
10 changes: 5 additions & 5 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -151,20 +151,20 @@ In the root of the directory, create and activate the environment with:
pipenv --python 3.11.4

# if you have updated the pipfile and need to update pipfile.lock, run
Pipenv install
pipenv install
# Otherwise, if you just want to install packages from the pipfile.lock, run
Pipenv sync
pipenv sync

# activate virtual environment
Pipenv shell
pipenv shell

# install an editable version of the oge package
pip install build
python -m build
pip install –editable .
pip install –-editable .
```

If you ever need to remove and reinstall the environment, run `pipenv -rm` from the root directory then follow the directions above.
If you ever need to remove and reinstall the environment, run `pipenv --rm` from the root directory then follow the directions above.

### Running the complete data pipeline
If you would like to run the full data pipeline to generate all intermediate outputs and results files, navigate to `open-grid-emissions/src`, and run the following (replacing 2021 with whichever year you want to run):
Expand Down
2 changes: 1 addition & 1 deletion notebooks/manual_data/zip_data.ipynb
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@
"outputs": [],
"source": [
"# option: just zip results for zenodo\n",
"for year in [2019, 2020, 2021]:\n",
"for year in [2019, 2020, 2021, 2022]:\n",
" output_data.zip_data_for_zenodo(year)"
]
}
Expand Down

0 comments on commit 1d0e7c7

Please sign in to comment.