From 8ad4fcf2dc1505f80f641f02e8c64602df3f3405 Mon Sep 17 00:00:00 2001 From: Michael Marchetti Date: Thu, 17 Dec 2020 14:49:56 -0500 Subject: [PATCH] update README --- README.md | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/README.md b/README.md index cdbc1ea8..99e90330 100644 --- a/README.md +++ b/README.md @@ -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 @@ -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