Skip to content

Commit 1d47768

Browse files
Small changes to documentation.
1 parent 27569d0 commit 1d47768

File tree

1 file changed

+7
-2
lines changed

1 file changed

+7
-2
lines changed

docs/pages/vw-installation.md

Lines changed: 7 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ PythonBridge has two kind of dependencies, the ones that are required in the Vis
3838
1. Requests
3939

4040
## Install Python 3.6
41-
We suggest using the installer provided in the Python webpage [https://www.python.org/downloads/release/python-368/](https://www.python.org/downloads/release/python-368/).
41+
We suggest using the installer provided in the Python webpage [https://www.python.org/downloads/release/python-368/](https://www.python.org/downloads/release/python-368/). Follow the instructions in the installer and do not forget to put Python on the PATH (This step should be performed by the installer).
4242

4343
To verify python installed correctly just run `python --version` and you should get `Python 3.6.8`.
4444
Also verify that pip has also been installed by running `pip -V` and you should get `pip 18.1 from ... (python 3.6)`
@@ -59,7 +59,7 @@ After all prerequesites are installed we can install PythonBridge itself. You sh
5959

6060
```smalltalk
6161
| dir |
62-
dir := Dialog requestDirectoryName: 'Choose the graphql parcels directory'.
62+
dir := Dialog requestDirectoryName: 'Choose the PythonBridge parcels directory'.
6363
dir isEmpty ifTrue: [^ self].
6464
dir:= dir, (String with: Filename separator).
6565
#('VwPharoPlatform' 'P3Generator' 'PythonBridgeBundle') do: [:fn | | file |
@@ -105,6 +105,11 @@ This examples should return 3.
105105

106106
## Troubleshooting
107107

108+
### Python or Pip are installed but are not found
109+
The most common reason for Windows to not be able to find Python is that Python folder are not appended to the PATH.
110+
111+
To ensure Python is in the PATH go to System Properties -> Advanced -> Environment Variables and check the 'PATH' environment varible. You should see two Python entries, one for the base directory and another one for the 'scripts' directory.
112+
108113
### Removing the pipenv environment
109114
In case you wish to remove the pipenv environment run:
110115
```

0 commit comments

Comments
 (0)