Skip to content

Commit 1b8038d

Browse files
authored
Fix: python -> pyton3 to match the python3 --version's not found error (#1217)
Co-authored-by: Jiayang Sun <sjyhehe@gmail.com>
1 parent 976cb39 commit 1b8038d

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

source/tutorials/installing-packages.rst

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -58,10 +58,10 @@ please install the latest 3.x version from `python.org`_ or refer to the
5858

5959
.. code-block:: python
6060
61-
>>> python --version
61+
>>> python3 --version
6262
Traceback (most recent call last):
6363
File "<stdin>", line 1, in <module>
64-
NameError: name 'python' is not defined
64+
NameError: name 'python3' is not defined
6565
6666
It's because this command and other suggested commands in this tutorial
6767
are intended to be run in a *shell* (also called a *terminal* or

0 commit comments

Comments
 (0)