Skip to content

Commit 79a4606

Browse files
authored
Update how_to_install_on_windows.txt
1 parent 668fa14 commit 79a4606

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

how_to/how_to_install_on_windows.txt

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ launcher for all users (recommended)" then click "Install Now".
3333
After installation, open the command prompt and check that the Python version
3434
matches the version you installed by executing::
3535

36-
...\> py --version
36+
...\> python --version
3737

3838

3939
About ``pip``
@@ -60,7 +60,7 @@ To create a virtual environment for your project, open a new command prompt,
6060
navigate to the folder where you want to create your project and then enter the
6161
following::
6262

63-
...\> py -m venv project-name
63+
...\> python -m venv project-name
6464

6565
This will create a folder called 'project-name' if it does not already exist
6666
and set up the virtual environment. To activate the environment, run::
@@ -79,12 +79,12 @@ Jam.py can be installed easily using ``pip`` within your virtual environment.
7979
In the command prompt, ensure your virtual environment is active, and execute
8080
the following command::
8181

82-
...\> py -m pip install jam.py
82+
...\> python -m pip install jam.py
8383

8484

8585
For a forked Jam.py with the latest patches, use::
8686

87-
...\> py -m pip install jam.py-v5
87+
...\> python -m pip install jam.py-v5
8888

8989

9090
This will download and install the latest Jam.py release.

0 commit comments

Comments
 (0)