Prabhakar Arasavelli
Prabhakar Arasavelli

Reputation: 101

Error while trying to install GDAL using pip and easy_install with Python2.7 on Ubuntu 12.10

My Error is

__main__.gdal_config_error: [Errno 2] No such file or directory

I get this while trying to install GDAL using pip and easy_install with Python2.7 on Ubuntu 12.10.

Upvotes: 3

Views: 3529

Answers (2)

Otto
Otto

Reputation: 56

try this:

sudo apt-get install python-gdal

Upvotes: 4

marty bu
marty bu

Reputation: 744

Try this:

sudo add-apt-repository ppa:ubuntugis/ppa
sudo apt-get update
sudo apt-get install gdal

Source

Upvotes: 1

Related Questions