morsapaes commented on a change in pull request #13170:
URL: https://github.com/apache/flink/pull/13170#discussion_r477244980



##########
File path: docs/dev/python/getting-started/installation.md
##########
@@ -33,12 +33,32 @@ $ python --version
 # the version printed here must be 3.5, 3.6 or 3.7
 {% endhighlight %}
 
+## Environment Setup
+
+Your system may include multiple python versions and thus also include 
multiple python binary executables. You can run the following
+`ls` command to find out what python binary executables are available on your 
system:
+{% highlight bash %}
+$ ls /usr/bin/python*
+{% endhighlight %}
+
+For satisfying the the version of python environment, you can choose to soft 
link `python` to point to your python3 interpreter:

Review comment:
       ```suggestion
   To satisfy the PyFlink requirement regarding the Python environment version, 
you can choose to soft link `python` to point to your `python3` interpreter:
   ```

##########
File path: docs/dev/python/getting-started/installation.md
##########
@@ -33,12 +33,32 @@ $ python --version
 # the version printed here must be 3.5, 3.6 or 3.7
 {% endhighlight %}
 
+## Environment Setup
+
+Your system may include multiple python versions and thus also include 
multiple python binary executables. You can run the following
+`ls` command to find out what python binary executables are available on your 
system:
+{% highlight bash %}

Review comment:
       ```suggestion
   Your system may include multiple Python versions, and thus also include 
multiple Python binary executables. You can run the following
   `ls` command to find out what Python binary executables are available in 
your system:
   
   {% highlight bash %}
   ```

##########
File path: docs/dev/python/getting-started/installation.md
##########
@@ -33,12 +33,32 @@ $ python --version
 # the version printed here must be 3.5, 3.6 or 3.7
 {% endhighlight %}
 
+## Environment Setup
+
+Your system may include multiple python versions and thus also include 
multiple python binary executables. You can run the following
+`ls` command to find out what python binary executables are available on your 
system:
+{% highlight bash %}
+$ ls /usr/bin/python*
+{% endhighlight %}
+
+For satisfying the the version of python environment, you can choose to soft 
link `python` to point to your python3 interpreter:
+{% highlight bash %}
+ln -s /usr/bin/python3 python
+{% endhighlight %}
+
+In addition to the way of soft link, you can also choose to create a virtual 
env of Python.
+For details on the creating of virtual env, you can refer to the [Preparing 
Python Virtual Environment]({{ site.baseurl 
}}/dev/python/faq.html#preparing-python-virtual-environment)
+
 ## Installation of PyFlink
 
 PyFlink has already been deployed to PyPi and can be installed as following:

Review comment:
       ```suggestion
   PyFlink is available through [PyPi](https://pypi.org/project/apache-flink/) 
as a regular Python package and can be installed as follows:
   ```

##########
File path: docs/dev/python/getting-started/installation.md
##########
@@ -33,12 +33,32 @@ $ python --version
 # the version printed here must be 3.5, 3.6 or 3.7
 {% endhighlight %}
 
+## Environment Setup
+
+Your system may include multiple python versions and thus also include 
multiple python binary executables. You can run the following
+`ls` command to find out what python binary executables are available on your 
system:
+{% highlight bash %}
+$ ls /usr/bin/python*
+{% endhighlight %}
+
+For satisfying the the version of python environment, you can choose to soft 
link `python` to point to your python3 interpreter:
+{% highlight bash %}
+ln -s /usr/bin/python3 python
+{% endhighlight %}
+
+In addition to the way of soft link, you can also choose to create a virtual 
env of Python.
+For details on the creating of virtual env, you can refer to the [Preparing 
Python Virtual Environment]({{ site.baseurl 
}}/dev/python/faq.html#preparing-python-virtual-environment)

Review comment:
       ```suggestion
   In addition to creating a soft link, you can also choose to create a Python 
virtual environment (`venv`). You can refer to the [Preparing Python Virtual 
Environment]({{ site.baseurl 
}}/dev/python/faq.html#preparing-python-virtual-environment) documentation page 
for details on how to achieve that setup.
   ```




----------------------------------------------------------------
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org


Reply via email to