Skip to content

Commit

Permalink
update README
Browse files Browse the repository at this point in the history
  • Loading branch information
mmarchetti committed Dec 17, 2020
1 parent 54b5fe0 commit 8ad4fcf
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -221,11 +221,11 @@ from an alternative Python executable specified via the `--python` option or via
rsconnect deploy notebook --python /path/to/python my-notebook.ipynb
```

You can see the packages list that will be included by running `pip freeze` yourself,
You can see the packages list that will be included by running `pip list --format=freeze` yourself,
ensuring that you use the same Python that you use to run your Jupyter Notebook:

```bash
/path/to/python -m pip freeze
/path/to/python -m pip list --format=freeze
```

#### Static (Snapshot) Deployment
Expand Down Expand Up @@ -306,11 +306,11 @@ from an alternative Python executable specified via the `--python` option or via
rsconnect deploy api --python /path/to/python my-api/
```

You can see the packages list that will be included by running `pip freeze` yourself,
You can see the packages list that will be included by running `pip list --format=freeze` yourself,
ensuring that you use the same Python that you use to run your API or application:

```bash
/path/to/python -m pip freeze
/path/to/python -m pip list --format=freeze
```

### Creating a Manifest for Future Deployment
Expand Down

0 comments on commit 8ad4fcf

Please sign in to comment.