Skip to content

Commit

Permalink
fix typo in the basic install guide
Browse files Browse the repository at this point in the history
  • Loading branch information
2320sharon committed May 7, 2024
1 parent 39d6c45 commit 4dfecd6
Showing 1 changed file with 7 additions and 5 deletions.
12 changes: 7 additions & 5 deletions docs/basic-install-guide.md
Original file line number Diff line number Diff line change
Expand Up @@ -60,16 +60,18 @@ conda activate coastseg
- CoastSeg requires `geopandas` to function properly so they will be installed in the `coastseg` environment.
- [Geopandas](https://geopandas.org/en/stable/) has [GDAL](https://gdal.org/) as a dependency so its best to install it with conda.
- Make sure to install geopandas from the `conda-forge` channel to ensure you get the latest version and to avoid dependency conflicts
`bash

```bash
conda install -c conda-forge geopandas -y
`
**4.Install the CoastSeg from PyPi**
```

**4.Install the CoastSeg from PyPi**

```bash
pip install coastseg
```

**4.Uninstall the h5py installed by pip and reinstall with conda-forge**
**5.Uninstall the h5py installed by pip and reinstall with conda-forge**

- `pip install jsonschema==4.19.0` is a temporary command you have to run until issue https://github.com/stac-utils/pystac/issues/1214 is resolved

Expand All @@ -79,7 +81,7 @@ pip uninstall h5py -y
conda install -c conda-forge h5py -y
```

**5.(Optional) Install Optional Dependencies for the Zoo Workflow**
**6.(Optional) Install Optional Dependencies for the Zoo Workflow**

- Only install these dependencies if you plan to use CoastSeg's Zoo workflow notebook.
- **Warning** installing tensorflow will not work correctly on Mac see for more details [Mac install guide](https://satelliteshorelines.github.io/CoastSeg/mac-install-guide/)
Expand Down

0 comments on commit 4dfecd6

Please sign in to comment.