Skip to content

Commit

Permalink
invoke pip correctly
Browse files Browse the repository at this point in the history
  • Loading branch information
jhkennedy committed Oct 3, 2024
1 parent 3bc29c5 commit 2b9e199
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@ During several workshops organized by NASA Openscapes, the need to provide easy-
To install `earthaccess` go to your terminal and install it using `pip`:

```
pip install earthaccess
python -m pip install earthaccess
```


Expand Down
4 changes: 2 additions & 2 deletions docs/contributing/development.md
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@ environment also includes `nox`. You can create it with `venv`, `conda`, or `mam
Then install `earthaccess` into the environment in editable mode with the optional development dependencies:
```bash
pip install --editable ".[dev,test,docs]"
python -m pip install --editable ".[dev,test,docs]"
```
Expand Down Expand Up @@ -89,7 +89,7 @@ having to make significant changes to get the checks to pass.
To set up pre-commit, follow these steps:
- `pip install pre-commit` ([official installation docs](https://pre-commit.com/#install))
- `python -m pip install pre-commit` ([official installation docs](https://pre-commit.com/#install))
- `pre-commit install` to enable it to run automatically
- `pre-commit run -a` to run it manually
Expand Down
2 changes: 1 addition & 1 deletion docs/quick-start.md
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ conda install -c conda-forge earthaccess
#### Using `pip`

```bash
pip install earthaccess
python -m pip install earthaccess
```


Expand Down

0 comments on commit 2b9e199

Please sign in to comment.