Skip to content

Commit

Permalink
update install docu
Browse files Browse the repository at this point in the history
  • Loading branch information
treee111 committed Jan 19, 2022
1 parent 998fa33 commit a8f4331
Showing 1 changed file with 16 additions and 15 deletions.
31 changes: 16 additions & 15 deletions docs/QUICKSTART_WINDOWS.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
#### Table of contents <!-- omit in toc -->
- [Download and Install required programs](#download-and-install-required-programs)
- [Java](#java)
- [Python - The Python programming language interpreter](#python---the-python-programming-language-interpreter)
- [Python](#python)
- [GDAL - The Geospatial Data Abstraction Library](#gdal---the-geospatial-data-abstraction-library)
- [Windows](#windows)
- [Install additional Python modules](#install-additional-python-modules)
Expand All @@ -15,37 +15,38 @@ Download and install Java from
* https://javadl.oracle.com/webapps/download/AutoDL?BundleId=244582_d7fc238d0cbf4b0dac67be84580cfb4b (32 bit) or
* https://javadl.oracle.com/webapps/download/AutoDL?BundleId=244584_d7fc238d0cbf4b0dac67be84580cfb4b (64 bit)

## Python - The Python programming language interpreter
## Python
1. Download Python 3.7.9 from https://www.python.org/ftp/python/3.7.9/python-3.7.9.exe
2. Install Python 3.7.9:
* Check "Add Python 3.7 to PATH", select "Customize installation",
* set "Customize install location" to "C:\Python" and install.
2. Install Python 3.7.9
* Check "Add Python 3.7 to PATH", select "Customize installation"
* set "Customize install location" to "C:\Python" and install
3. Reboot Windows to activate the path

## GDAL - The Geospatial Data Abstraction Library
2a. Download GDAL files for Python 3.7 from gisinternals
1. Download GDAL files for Python 3.7 from gisinternals
* `gdal-204-1900-core.msi` from https://download.gisinternals.com/sdk/downloads/release-1900-gdal-2-4-4-mapserver-7-4-3/gdal-204-1900-core.msi
* `GDAL-2.4.4.win32-py3.7.msi` from https://download.gisinternals.com/sdk/downloads/release-1900-gdal-2-4-4-mapserver-7-4-3/GDAL-2.4.4.win32-py3.7.msi

2b. Install gdal-204-1900-core.msi:
2. Install gdal-204-1900-core.msi:
* Select "Typical" setup

2c. Install GDAL-2.4.4.win32-py3.7.msi:
3. Install GDAL-2.4.4.win32-py3.7.msi:
* Activate "Python from another location" and enter `C:\Python` in the textfield below.
* Finish installation.

## Windows
4a. Edit environment variables
* by Windows search for "environ" or
* run "rundll32.exe sysdm.cpl, EditEnvironmentVariables" from cmd
1. Edit environment variables. Access them with on of the following ways:
* Windows search for "environ" or
* run "rundll32.exe sysdm.cpl, EditEnvironmentVariables" from cmd or
* start > search > environment > edit the system variables

4b. Edit the PATH systemvariable and add `;C:\Program Files (x86)\GDAL`
2. Edit the PATH systemvariable and add `;C:\Program Files (x86)\GDAL`

4c. Create new systemvariable `GDAL_DATA` with the value `C:\Program Files (x86)\GDAL\gdal-data`
3. Create new systemvariable `GDAL_DATA` with the value `C:\Program Files (x86)\GDAL\gdal-data`

4d. Create new systemvariable `GDAL_DRIVER_PATH` with the value `C:\Program Files (x86)\GDAL\gdalplugins`
4. Create new systemvariable `GDAL_DRIVER_PATH` with the value `C:\Program Files (x86)\GDAL\gdalplugins`

4e. Create new systemvariable `PROJ_LIB` with the value `C:\Program Files (x86)\GDAL\projlib`
5. Create new systemvariable `PROJ_LIB` with the value `C:\Program Files (x86)\GDAL\projlib`

## Install additional Python modules
Using cmd (Windows+R, cmd), move to the root-folder of wahooMapsCreator and install required Python modules:
Expand Down

0 comments on commit a8f4331

Please sign in to comment.