Skip to content

Commit

Permalink
Update README
Browse files Browse the repository at this point in the history
The conda build is not currently working, so I've removed it from
the install instructions for now. Also, as per [ref NREL#193] I've updated the install instructions
to use a pinned version of `coin-or-cbc`.
  • Loading branch information
camirmas committed Nov 22, 2023
1 parent 8a0a828 commit da6b83e
Showing 1 changed file with 7 additions and 14 deletions.
21 changes: 7 additions & 14 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -17,18 +17,6 @@ solar and storage.
pip install HOPP
```

or as a conda package:

```
conda install hopp -c nrel -c conda-forge -c sunpower
```

NOTE: If you install from conda you will need to install `global-land-mask` from PyPi:

```
pip install global-land-mask
```

## Installing from Source
1. Using Git, navigate to a local target directory and clone repository:
```
Expand All @@ -48,14 +36,19 @@ solar and storage.

4. Install dependencies:
```
conda install -c conda-forge coin-or-cbc -y
conda install -c conda-forge coin-or-cbc=2.10.8 -y
conda install -c conda-forge glpk -y
pip install -r requirements.txt
pip install -r requirements-dev.txt
```

Note if you are on Windows, you will have to manually install Cbc: https://github.com/coin-or/Cbc

If you also want development dependencies for running tests and building docs:

```
pip install -r requirements-dev.txt
```

5. Install HOPP:
```
pip install -e .
Expand Down

0 comments on commit da6b83e

Please sign in to comment.