mirror of
https://github.com/wassname/pyrobolearn.git
synced 2026-08-22 12:20:41 +08:00
8 lines
259 B
Bash
Executable File
8 lines
259 B
Bash
Executable File
#!/bin/sh
|
|
# This bash script install the gdal library and the official python wrapper
|
|
|
|
sudo apt-get install libgdal-dev
|
|
export CPLUS_INCLUDE_PATH=/usr/include/gdal
|
|
export C_INCLUDE_PATH=/usr/include/gdal
|
|
#sudo pip install gdal
|
|
sudo apt-get install python-gdal |