You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@beam.apache.org by al...@apache.org on 2022/05/07 01:43:26 UTC

[beam] branch master updated: Quote pip install package name

This is an automated email from the ASF dual-hosted git repository.

altay pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/beam.git


The following commit(s) were added to refs/heads/master by this push:
     new 6e772d67e75 Quote pip install package name
     new f432136d32d Merge pull request #17450 from kynx/patch-1
6e772d67e75 is described below

commit 6e772d67e75f421d368b5c689bc4dd1ec3bd5eea
Author: kynx <ma...@kynx.org>
AuthorDate: Fri Apr 22 20:44:13 2022 +0100

    Quote pip install package name
    
    macOS 12.3.1
    Python 3.8.12
    pip 22.0.4
    
    Without the quotes zsh barfs with `zsh: no matches found: apache-beam[test]`
---
 website/www/site/content/en/get-started/quickstart-py.md | 10 +++++-----
 1 file changed, 5 insertions(+), 5 deletions(-)

diff --git a/website/www/site/content/en/get-started/quickstart-py.md b/website/www/site/content/en/get-started/quickstart-py.md
index 006a3f5d176..ee68fa7be5f 100644
--- a/website/www/site/content/en/get-started/quickstart-py.md
+++ b/website/www/site/content/en/get-started/quickstart-py.md
@@ -101,23 +101,23 @@ PS> python -m pip install apache-beam
 
 #### Extra requirements
 
-The above installation will not install all the extra dependencies for using features like the Google Cloud Dataflow runner. Information on what extra packages are required for different features are highlighted below. It is possible to install multiple extra requirements using something like `pip install apache-beam[feature1,feature2]`.
+The above installation will not install all the extra dependencies for using features like the Google Cloud Dataflow runner. Information on what extra packages are required for different features are highlighted below. It is possible to install multiple extra requirements using something like `pip install 'apache-beam[feature1,feature2]'`.
 
 - **Google Cloud Platform**
-  - Installation Command: `pip install apache-beam[gcp]`
+  - Installation Command: `pip install 'apache-beam[gcp]'`
   - Required for:
     - Google Cloud Dataflow Runner
     - GCS IO
     - Datastore IO
     - BigQuery IO
 - **Amazon Web Services**
-  - Installation Command: `pip install apache-beam[aws]`
+  - Installation Command: `pip install 'apache-beam[aws]'`
   - Required for I/O connectors interfacing with AWS
 - **Tests**
-  - Installation Command: `pip install apache-beam[test]`
+  - Installation Command: `pip install 'apache-beam[test]'`
   - Required for developing on beam and running unittests
 - **Docs**
-  - Installation Command: `pip install apache-beam[docs]`
+  - Installation Command: `pip install 'apache-beam[docs]'`
   - Generating API documentation using Sphinx
 
 ## Execute a pipeline