Import error: no module named _gdal_array The Next CEO of Stack OverflowDLL load error with...

Where to find order of arguments for default functions

% symbol leads to superlong (forever?) compilations

How easy is it to start Magic from scratch?

How to count occurrences of text in a file?

Increase performance creating Mandelbrot set in python

If I blow insulation everywhere in my attic except the door trap, will heat escape through it?

What is the purpose of the Evocation wizard's Potent Cantrip feature?

Anatomically Correct Strange Women In Ponds Distributing Swords

How to use tikz in fbox?

Removing read access from a file

Trouble understanding the speech of overseas colleagues

How do scammers retract money, while you can’t?

Why doesn't a table tennis ball float on the surface? How do we calculate buoyancy here?

Inappropriate reference requests from Journal reviewers

Return of the Riley Riddles in Reverse

Only print output after finding pattern

Is it okay to store user locations?

What happens if you roll doubles 3 times then land on "Go to jail?"

How to start emacs in "nothing" mode (`fundamental-mode`)

What is the difference between "behavior" and "behaviour"?

How do I construct this japanese bowl?

Example of a Mathematician/Physicist whose Other Publications during their PhD eclipsed their PhD Thesis

Would this house-rule that treats advantage as a +1 to the roll instead (and disadvantage as -1) and allows them to stack be balanced?

I believe this to be a fraud - hired, then asked to cash check and send cash as Bitcoin



Import error: no module named _gdal_array



The Next CEO of Stack OverflowDLL load error with Gdal polygonize in QGIS 1.8 (windows 7)How to run OGR in ArcGIS Scripts?How to work with OGR and GDAL in GP Service in ArcGIS for Server 10.1QGIS polygonize GDAL DLL load failedusing GDAL installed using homebrew from python on OSXGDAL conda install on Mac OS troubleGDAL ImportError: DLL load failed: The specified module could not be foundMaking ArcGIS Tool using with GDAL and scikit-learngdalinfo and other applications not running through Anaconda PromptGDAL import error in Python3.6












3















I am using python 2.7 and have gdal installed. I want to read an entire .jpg image at once and so I used statement



import gdal
from gdalconst import *
driver = gdal.GetDriverByName('JPEG')
driver.Register()
dataset = gdal.Open('1.jpg', GA_ReadOnly)
cols = dataset.RasterXSize
rows = dataset.RasterYSize
bands = dataset.RasterCount
geotransform = dataset.GetGeoTransform()
originX = geotransform[0]
originY = geotransform[3]
pixelWidth = geotransform[1]
pixelHeight = geotransform[5]
band = dataset.GetRasterBand(1)
data = band.ReadAsArray(0, 0, cols, rows)


but I am getting an import error for gdal_array.



ImportError                               Traceback (most recent call last)
<ipython-input-7-6a16047a395b> in <module>()
----> 1 data = band.ReadAsArray(0, 0, cols, rows)

C:UsersDELLAnacondalibsite-packagesosgeogdal.pyc in ReadAsArray(self, xoff, yoff, win_xsize, win_ysize, buf_xsize, buf_ysize, buf_obj)
1174 def ReadAsArray(self, xoff=0, yoff=0, win_xsize=None, win_ysize=None,
1175 buf_xsize=None, buf_ysize=None, buf_obj=None):
-> 1176 import gdalnumeric
1177
1178 return gdalnumeric.BandReadAsArray( self, xoff, yoff,

C:UsersDELLAnacondalibsite-packagesosgeogdalnumeric.py in <module>()
----> 1 from gdal_array import *
2 from numpy import *

C:UsersDELLAnacondalibsite-packagesosgeogdal_array.py in <module>()
24 fp.close()
25 return _mod
---> 26 _gdal_array = swig_import_helper()
27 del swig_import_helper
28 else:

C:UsersDELLAnacondalibsite-packagesosgeogdal_array.py in swig_import_helper()
16 fp, pathname, description = imp.find_module('_gdal_array', [dirname(__file__)])
17 except ImportError:
---> 18 import _gdal_array
19 return _gdal_array
20 if fp is not None:

ImportError: No module named _gdal_array


Please tell me what could possible be going wrong. I am new to using GDAL.










share|improve this question

























  • I meet the same problem when using python 3.4 I am puzzled that when I changed to X86(32bit) version ,then it could run. expect someone to solve the probelm in x64 version.

    – chaobin zhang
    Dec 6 '16 at 11:09
















3















I am using python 2.7 and have gdal installed. I want to read an entire .jpg image at once and so I used statement



import gdal
from gdalconst import *
driver = gdal.GetDriverByName('JPEG')
driver.Register()
dataset = gdal.Open('1.jpg', GA_ReadOnly)
cols = dataset.RasterXSize
rows = dataset.RasterYSize
bands = dataset.RasterCount
geotransform = dataset.GetGeoTransform()
originX = geotransform[0]
originY = geotransform[3]
pixelWidth = geotransform[1]
pixelHeight = geotransform[5]
band = dataset.GetRasterBand(1)
data = band.ReadAsArray(0, 0, cols, rows)


but I am getting an import error for gdal_array.



ImportError                               Traceback (most recent call last)
<ipython-input-7-6a16047a395b> in <module>()
----> 1 data = band.ReadAsArray(0, 0, cols, rows)

C:UsersDELLAnacondalibsite-packagesosgeogdal.pyc in ReadAsArray(self, xoff, yoff, win_xsize, win_ysize, buf_xsize, buf_ysize, buf_obj)
1174 def ReadAsArray(self, xoff=0, yoff=0, win_xsize=None, win_ysize=None,
1175 buf_xsize=None, buf_ysize=None, buf_obj=None):
-> 1176 import gdalnumeric
1177
1178 return gdalnumeric.BandReadAsArray( self, xoff, yoff,

C:UsersDELLAnacondalibsite-packagesosgeogdalnumeric.py in <module>()
----> 1 from gdal_array import *
2 from numpy import *

C:UsersDELLAnacondalibsite-packagesosgeogdal_array.py in <module>()
24 fp.close()
25 return _mod
---> 26 _gdal_array = swig_import_helper()
27 del swig_import_helper
28 else:

C:UsersDELLAnacondalibsite-packagesosgeogdal_array.py in swig_import_helper()
16 fp, pathname, description = imp.find_module('_gdal_array', [dirname(__file__)])
17 except ImportError:
---> 18 import _gdal_array
19 return _gdal_array
20 if fp is not None:

ImportError: No module named _gdal_array


Please tell me what could possible be going wrong. I am new to using GDAL.










share|improve this question

























  • I meet the same problem when using python 3.4 I am puzzled that when I changed to X86(32bit) version ,then it could run. expect someone to solve the probelm in x64 version.

    – chaobin zhang
    Dec 6 '16 at 11:09














3












3








3


3






I am using python 2.7 and have gdal installed. I want to read an entire .jpg image at once and so I used statement



import gdal
from gdalconst import *
driver = gdal.GetDriverByName('JPEG')
driver.Register()
dataset = gdal.Open('1.jpg', GA_ReadOnly)
cols = dataset.RasterXSize
rows = dataset.RasterYSize
bands = dataset.RasterCount
geotransform = dataset.GetGeoTransform()
originX = geotransform[0]
originY = geotransform[3]
pixelWidth = geotransform[1]
pixelHeight = geotransform[5]
band = dataset.GetRasterBand(1)
data = band.ReadAsArray(0, 0, cols, rows)


but I am getting an import error for gdal_array.



ImportError                               Traceback (most recent call last)
<ipython-input-7-6a16047a395b> in <module>()
----> 1 data = band.ReadAsArray(0, 0, cols, rows)

C:UsersDELLAnacondalibsite-packagesosgeogdal.pyc in ReadAsArray(self, xoff, yoff, win_xsize, win_ysize, buf_xsize, buf_ysize, buf_obj)
1174 def ReadAsArray(self, xoff=0, yoff=0, win_xsize=None, win_ysize=None,
1175 buf_xsize=None, buf_ysize=None, buf_obj=None):
-> 1176 import gdalnumeric
1177
1178 return gdalnumeric.BandReadAsArray( self, xoff, yoff,

C:UsersDELLAnacondalibsite-packagesosgeogdalnumeric.py in <module>()
----> 1 from gdal_array import *
2 from numpy import *

C:UsersDELLAnacondalibsite-packagesosgeogdal_array.py in <module>()
24 fp.close()
25 return _mod
---> 26 _gdal_array = swig_import_helper()
27 del swig_import_helper
28 else:

C:UsersDELLAnacondalibsite-packagesosgeogdal_array.py in swig_import_helper()
16 fp, pathname, description = imp.find_module('_gdal_array', [dirname(__file__)])
17 except ImportError:
---> 18 import _gdal_array
19 return _gdal_array
20 if fp is not None:

ImportError: No module named _gdal_array


Please tell me what could possible be going wrong. I am new to using GDAL.










share|improve this question
















I am using python 2.7 and have gdal installed. I want to read an entire .jpg image at once and so I used statement



import gdal
from gdalconst import *
driver = gdal.GetDriverByName('JPEG')
driver.Register()
dataset = gdal.Open('1.jpg', GA_ReadOnly)
cols = dataset.RasterXSize
rows = dataset.RasterYSize
bands = dataset.RasterCount
geotransform = dataset.GetGeoTransform()
originX = geotransform[0]
originY = geotransform[3]
pixelWidth = geotransform[1]
pixelHeight = geotransform[5]
band = dataset.GetRasterBand(1)
data = band.ReadAsArray(0, 0, cols, rows)


but I am getting an import error for gdal_array.



ImportError                               Traceback (most recent call last)
<ipython-input-7-6a16047a395b> in <module>()
----> 1 data = band.ReadAsArray(0, 0, cols, rows)

C:UsersDELLAnacondalibsite-packagesosgeogdal.pyc in ReadAsArray(self, xoff, yoff, win_xsize, win_ysize, buf_xsize, buf_ysize, buf_obj)
1174 def ReadAsArray(self, xoff=0, yoff=0, win_xsize=None, win_ysize=None,
1175 buf_xsize=None, buf_ysize=None, buf_obj=None):
-> 1176 import gdalnumeric
1177
1178 return gdalnumeric.BandReadAsArray( self, xoff, yoff,

C:UsersDELLAnacondalibsite-packagesosgeogdalnumeric.py in <module>()
----> 1 from gdal_array import *
2 from numpy import *

C:UsersDELLAnacondalibsite-packagesosgeogdal_array.py in <module>()
24 fp.close()
25 return _mod
---> 26 _gdal_array = swig_import_helper()
27 del swig_import_helper
28 else:

C:UsersDELLAnacondalibsite-packagesosgeogdal_array.py in swig_import_helper()
16 fp, pathname, description = imp.find_module('_gdal_array', [dirname(__file__)])
17 except ImportError:
---> 18 import _gdal_array
19 return _gdal_array
20 if fp is not None:

ImportError: No module named _gdal_array


Please tell me what could possible be going wrong. I am new to using GDAL.







gdal python-2.7






share|improve this question















share|improve this question













share|improve this question




share|improve this question








edited Jul 3 '15 at 10:50







rach

















asked Jul 3 '15 at 10:35









rachrach

1101212




1101212













  • I meet the same problem when using python 3.4 I am puzzled that when I changed to X86(32bit) version ,then it could run. expect someone to solve the probelm in x64 version.

    – chaobin zhang
    Dec 6 '16 at 11:09



















  • I meet the same problem when using python 3.4 I am puzzled that when I changed to X86(32bit) version ,then it could run. expect someone to solve the probelm in x64 version.

    – chaobin zhang
    Dec 6 '16 at 11:09

















I meet the same problem when using python 3.4 I am puzzled that when I changed to X86(32bit) version ,then it could run. expect someone to solve the probelm in x64 version.

– chaobin zhang
Dec 6 '16 at 11:09





I meet the same problem when using python 3.4 I am puzzled that when I changed to X86(32bit) version ,then it could run. expect someone to solve the probelm in x64 version.

– chaobin zhang
Dec 6 '16 at 11:09










4 Answers
4






active

oldest

votes


















2














pip uninstall gdal

pip install numpy

pip install GDAL==$(gdal-config --version) --global-option=build_ext --global-option="-I/usr/include/gdal"





share|improve this answer















We're looking for long answers that provide some explanation and context. Don't just give a one-line answer; explain why your answer is right, ideally with citations. Answers that don't include explanations may be removed.






















    1














    I had the same problem and solved it by building gdal from scratch, after I had Python 2.7 with numpy installed.






    share|improve this answer































      0














      I am using gdal within a conda virtual environment. I had the same error, and I was able to resolve it by uninstalling and re-installing some of gdal's key dependencies.



      To determine its dependencies:
      conda info gdal



      More specifically, I had to conda uninstall the following:




      • gdal

      • numpy

      • libgdal

      • geos


      Quick note on geos: it was not listed as a dependency upon querying with conda info. However, when attempting to reinstall gdal, I had found that there were conflicting libraries associated with geos, so I uninstalled it for thoroughness.



      Then, a quick conda install gdal will re-install gdal and its dependencies. When you re-install gdal again with the above line, double-check that you are installing gdal version > 2.0



      These specific commands will be different depending on your python distribution / package manager. But hopefully, following a similar procedure of uninstalling/reinstalling will enable you to get a working version.






      share|improve this answer










      New contributor




      Mandi is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
      Check out our Code of Conduct.




























        -1














        I just solved this by placing the right files extracted from RPM.
        Here is where I get my 64bit RPM
        http://www.filewatcher.com/d/Mandriva/2010.1/x86_64/Sciences/Geosciences/gdal-python-1.7.2-1mdv2010.1.x86_64.rpm.220418.html



        Using the rpm extraction command provided by
        http://www.cyberciti.biz/tips/how-to-extract-an-rpm-package-without-installing-it.html



        I was able to find the lost _gdal_array.* files in the path below
        usr/lib64/python2.6/site-packages/GDAL-1.7.2-py2.6-linux-x86_64.egg/osgeo/



        Then simply copy _gdal_array.* to python2.7/site-packages/osgeo/ and problem solved. Hope this helps anyone with similar problems.






        share|improve this answer
























          Your Answer








          StackExchange.ready(function() {
          var channelOptions = {
          tags: "".split(" "),
          id: "79"
          };
          initTagRenderer("".split(" "), "".split(" "), channelOptions);

          StackExchange.using("externalEditor", function() {
          // Have to fire editor after snippets, if snippets enabled
          if (StackExchange.settings.snippets.snippetsEnabled) {
          StackExchange.using("snippets", function() {
          createEditor();
          });
          }
          else {
          createEditor();
          }
          });

          function createEditor() {
          StackExchange.prepareEditor({
          heartbeatType: 'answer',
          autoActivateHeartbeat: false,
          convertImagesToLinks: false,
          noModals: true,
          showLowRepImageUploadWarning: true,
          reputationToPostImages: null,
          bindNavPrevention: true,
          postfix: "",
          imageUploader: {
          brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
          contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
          allowUrls: true
          },
          onDemand: true,
          discardSelector: ".discard-answer"
          ,immediatelyShowMarkdownHelp:true
          });


          }
          });














          draft saved

          draft discarded


















          StackExchange.ready(
          function () {
          StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fgis.stackexchange.com%2fquestions%2f153199%2fimport-error-no-module-named-gdal-array%23new-answer', 'question_page');
          }
          );

          Post as a guest















          Required, but never shown

























          4 Answers
          4






          active

          oldest

          votes








          4 Answers
          4






          active

          oldest

          votes









          active

          oldest

          votes






          active

          oldest

          votes









          2














          pip uninstall gdal

          pip install numpy

          pip install GDAL==$(gdal-config --version) --global-option=build_ext --global-option="-I/usr/include/gdal"





          share|improve this answer















          We're looking for long answers that provide some explanation and context. Don't just give a one-line answer; explain why your answer is right, ideally with citations. Answers that don't include explanations may be removed.



















            2














            pip uninstall gdal

            pip install numpy

            pip install GDAL==$(gdal-config --version) --global-option=build_ext --global-option="-I/usr/include/gdal"





            share|improve this answer















            We're looking for long answers that provide some explanation and context. Don't just give a one-line answer; explain why your answer is right, ideally with citations. Answers that don't include explanations may be removed.

















              2












              2








              2







              pip uninstall gdal

              pip install numpy

              pip install GDAL==$(gdal-config --version) --global-option=build_ext --global-option="-I/usr/include/gdal"





              share|improve this answer















              pip uninstall gdal

              pip install numpy

              pip install GDAL==$(gdal-config --version) --global-option=build_ext --global-option="-I/usr/include/gdal"






              share|improve this answer














              share|improve this answer



              share|improve this answer








              edited Mar 10 '18 at 21:12









              tinlyx

              5,36663374




              5,36663374










              answered Mar 10 '18 at 20:57









              Ciano SaraivaCiano Saraiva

              312




              312



              We're looking for long answers that provide some explanation and context. Don't just give a one-line answer; explain why your answer is right, ideally with citations. Answers that don't include explanations may be removed.




              We're looking for long answers that provide some explanation and context. Don't just give a one-line answer; explain why your answer is right, ideally with citations. Answers that don't include explanations may be removed.


























                  1














                  I had the same problem and solved it by building gdal from scratch, after I had Python 2.7 with numpy installed.






                  share|improve this answer




























                    1














                    I had the same problem and solved it by building gdal from scratch, after I had Python 2.7 with numpy installed.






                    share|improve this answer


























                      1












                      1








                      1







                      I had the same problem and solved it by building gdal from scratch, after I had Python 2.7 with numpy installed.






                      share|improve this answer













                      I had the same problem and solved it by building gdal from scratch, after I had Python 2.7 with numpy installed.







                      share|improve this answer












                      share|improve this answer



                      share|improve this answer










                      answered Oct 9 '15 at 9:38









                      HalmackenreuterHalmackenreuter

                      1211




                      1211























                          0














                          I am using gdal within a conda virtual environment. I had the same error, and I was able to resolve it by uninstalling and re-installing some of gdal's key dependencies.



                          To determine its dependencies:
                          conda info gdal



                          More specifically, I had to conda uninstall the following:




                          • gdal

                          • numpy

                          • libgdal

                          • geos


                          Quick note on geos: it was not listed as a dependency upon querying with conda info. However, when attempting to reinstall gdal, I had found that there were conflicting libraries associated with geos, so I uninstalled it for thoroughness.



                          Then, a quick conda install gdal will re-install gdal and its dependencies. When you re-install gdal again with the above line, double-check that you are installing gdal version > 2.0



                          These specific commands will be different depending on your python distribution / package manager. But hopefully, following a similar procedure of uninstalling/reinstalling will enable you to get a working version.






                          share|improve this answer










                          New contributor




                          Mandi is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
                          Check out our Code of Conduct.

























                            0














                            I am using gdal within a conda virtual environment. I had the same error, and I was able to resolve it by uninstalling and re-installing some of gdal's key dependencies.



                            To determine its dependencies:
                            conda info gdal



                            More specifically, I had to conda uninstall the following:




                            • gdal

                            • numpy

                            • libgdal

                            • geos


                            Quick note on geos: it was not listed as a dependency upon querying with conda info. However, when attempting to reinstall gdal, I had found that there were conflicting libraries associated with geos, so I uninstalled it for thoroughness.



                            Then, a quick conda install gdal will re-install gdal and its dependencies. When you re-install gdal again with the above line, double-check that you are installing gdal version > 2.0



                            These specific commands will be different depending on your python distribution / package manager. But hopefully, following a similar procedure of uninstalling/reinstalling will enable you to get a working version.






                            share|improve this answer










                            New contributor




                            Mandi is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
                            Check out our Code of Conduct.























                              0












                              0








                              0







                              I am using gdal within a conda virtual environment. I had the same error, and I was able to resolve it by uninstalling and re-installing some of gdal's key dependencies.



                              To determine its dependencies:
                              conda info gdal



                              More specifically, I had to conda uninstall the following:




                              • gdal

                              • numpy

                              • libgdal

                              • geos


                              Quick note on geos: it was not listed as a dependency upon querying with conda info. However, when attempting to reinstall gdal, I had found that there were conflicting libraries associated with geos, so I uninstalled it for thoroughness.



                              Then, a quick conda install gdal will re-install gdal and its dependencies. When you re-install gdal again with the above line, double-check that you are installing gdal version > 2.0



                              These specific commands will be different depending on your python distribution / package manager. But hopefully, following a similar procedure of uninstalling/reinstalling will enable you to get a working version.






                              share|improve this answer










                              New contributor




                              Mandi is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
                              Check out our Code of Conduct.










                              I am using gdal within a conda virtual environment. I had the same error, and I was able to resolve it by uninstalling and re-installing some of gdal's key dependencies.



                              To determine its dependencies:
                              conda info gdal



                              More specifically, I had to conda uninstall the following:




                              • gdal

                              • numpy

                              • libgdal

                              • geos


                              Quick note on geos: it was not listed as a dependency upon querying with conda info. However, when attempting to reinstall gdal, I had found that there were conflicting libraries associated with geos, so I uninstalled it for thoroughness.



                              Then, a quick conda install gdal will re-install gdal and its dependencies. When you re-install gdal again with the above line, double-check that you are installing gdal version > 2.0



                              These specific commands will be different depending on your python distribution / package manager. But hopefully, following a similar procedure of uninstalling/reinstalling will enable you to get a working version.







                              share|improve this answer










                              New contributor




                              Mandi is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
                              Check out our Code of Conduct.









                              share|improve this answer



                              share|improve this answer








                              edited 11 mins ago





















                              New contributor




                              Mandi is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
                              Check out our Code of Conduct.









                              answered 17 mins ago









                              MandiMandi

                              11




                              11




                              New contributor




                              Mandi is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
                              Check out our Code of Conduct.





                              New contributor





                              Mandi is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
                              Check out our Code of Conduct.






                              Mandi is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
                              Check out our Code of Conduct.























                                  -1














                                  I just solved this by placing the right files extracted from RPM.
                                  Here is where I get my 64bit RPM
                                  http://www.filewatcher.com/d/Mandriva/2010.1/x86_64/Sciences/Geosciences/gdal-python-1.7.2-1mdv2010.1.x86_64.rpm.220418.html



                                  Using the rpm extraction command provided by
                                  http://www.cyberciti.biz/tips/how-to-extract-an-rpm-package-without-installing-it.html



                                  I was able to find the lost _gdal_array.* files in the path below
                                  usr/lib64/python2.6/site-packages/GDAL-1.7.2-py2.6-linux-x86_64.egg/osgeo/



                                  Then simply copy _gdal_array.* to python2.7/site-packages/osgeo/ and problem solved. Hope this helps anyone with similar problems.






                                  share|improve this answer




























                                    -1














                                    I just solved this by placing the right files extracted from RPM.
                                    Here is where I get my 64bit RPM
                                    http://www.filewatcher.com/d/Mandriva/2010.1/x86_64/Sciences/Geosciences/gdal-python-1.7.2-1mdv2010.1.x86_64.rpm.220418.html



                                    Using the rpm extraction command provided by
                                    http://www.cyberciti.biz/tips/how-to-extract-an-rpm-package-without-installing-it.html



                                    I was able to find the lost _gdal_array.* files in the path below
                                    usr/lib64/python2.6/site-packages/GDAL-1.7.2-py2.6-linux-x86_64.egg/osgeo/



                                    Then simply copy _gdal_array.* to python2.7/site-packages/osgeo/ and problem solved. Hope this helps anyone with similar problems.






                                    share|improve this answer


























                                      -1












                                      -1








                                      -1







                                      I just solved this by placing the right files extracted from RPM.
                                      Here is where I get my 64bit RPM
                                      http://www.filewatcher.com/d/Mandriva/2010.1/x86_64/Sciences/Geosciences/gdal-python-1.7.2-1mdv2010.1.x86_64.rpm.220418.html



                                      Using the rpm extraction command provided by
                                      http://www.cyberciti.biz/tips/how-to-extract-an-rpm-package-without-installing-it.html



                                      I was able to find the lost _gdal_array.* files in the path below
                                      usr/lib64/python2.6/site-packages/GDAL-1.7.2-py2.6-linux-x86_64.egg/osgeo/



                                      Then simply copy _gdal_array.* to python2.7/site-packages/osgeo/ and problem solved. Hope this helps anyone with similar problems.






                                      share|improve this answer













                                      I just solved this by placing the right files extracted from RPM.
                                      Here is where I get my 64bit RPM
                                      http://www.filewatcher.com/d/Mandriva/2010.1/x86_64/Sciences/Geosciences/gdal-python-1.7.2-1mdv2010.1.x86_64.rpm.220418.html



                                      Using the rpm extraction command provided by
                                      http://www.cyberciti.biz/tips/how-to-extract-an-rpm-package-without-installing-it.html



                                      I was able to find the lost _gdal_array.* files in the path below
                                      usr/lib64/python2.6/site-packages/GDAL-1.7.2-py2.6-linux-x86_64.egg/osgeo/



                                      Then simply copy _gdal_array.* to python2.7/site-packages/osgeo/ and problem solved. Hope this helps anyone with similar problems.







                                      share|improve this answer












                                      share|improve this answer



                                      share|improve this answer










                                      answered Apr 22 '16 at 17:24









                                      user2102823user2102823

                                      11




                                      11






























                                          draft saved

                                          draft discarded




















































                                          Thanks for contributing an answer to Geographic Information Systems Stack Exchange!


                                          • Please be sure to answer the question. Provide details and share your research!

                                          But avoid



                                          • Asking for help, clarification, or responding to other answers.

                                          • Making statements based on opinion; back them up with references or personal experience.


                                          To learn more, see our tips on writing great answers.




                                          draft saved


                                          draft discarded














                                          StackExchange.ready(
                                          function () {
                                          StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fgis.stackexchange.com%2fquestions%2f153199%2fimport-error-no-module-named-gdal-array%23new-answer', 'question_page');
                                          }
                                          );

                                          Post as a guest















                                          Required, but never shown





















































                                          Required, but never shown














                                          Required, but never shown












                                          Required, but never shown







                                          Required, but never shown

































                                          Required, but never shown














                                          Required, but never shown












                                          Required, but never shown







                                          Required, but never shown







                                          Popular posts from this blog

                                          Щит и меч (фильм) Содержание Названия серий | Сюжет |...

                                          is 'sed' thread safeWhat should someone know about using Python scripts in the shell?Nexenta bash script uses...

                                          Meter-Bus Содержание Параметры шины | Стандартизация |...