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

Powershell. How to parse gci Name?

How to count occurrences of text in a file?

What happened in Rome, when the western empire "fell"?

How did people program for Consoles with multiple CPUs?

Are police here, aren't itthey?

How to install OpenCV on Raspbian Stretch?

Is there a way to save my career from absolute disaster?

is it ok to reduce charging current for li ion 18650 battery?

Should I tutor a student who I know has cheated on their homework?

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

What steps are necessary to read a Modern SSD in Medieval Europe?

Why doesn't UK go for the same deal Japan has with EU to resolve Brexit?

Why don't programming languages automatically manage the synchronous/asynchronous problem?

How to invert MapIndexed on a ragged structure? How to construct a tree from rules?

0 rank tensor vs 1D vector

Is wanting to ask what to write an indication that you need to change your story?

How to scale a tikZ image which is within a figure environment

Is it ever safe to open a suspicious HTML file (e.g. email attachment)?

Method for adding error messages to a dictionary given a key

Is micro rebar a better way to reinforce concrete than rebar?

Why is information "lost" when it got into a black hole?

Why does the flight controls check come before arming the autobrake on the A320?

Help understanding this unsettling image of Titan, Epimetheus, and Saturn's rings?

Is it my responsibility to learn a new technology in my own time my employer wants to implement?



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 yesterday





















                              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 yesterday









                              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

                                          រឿង រ៉ូមេអូ និង ហ្ស៊ុយលីយេ សង្ខេបរឿង តួអង្គ បញ្ជីណែនាំ

                                          QGIS export composer to PDF scale the map [closed] Planned maintenance scheduled April 23, 2019 at 23:30 UTC (7:30pm US/Eastern) Announcing the arrival of Valued Associate #679: Cesar Manara Unicorn Meta Zoo #1: Why another podcast?Print Composer QGIS 2.6, how to export image?QGIS 2.8.1 print composer won't export all OpenCycleMap base layer tilesSave Print/Map QGIS composer view as PNG/PDF using Python (without changing anything in visible layout)?Export QGIS Print Composer PDF with searchable text labelsQGIS Print Composer does not change from landscape to portrait orientation?How can I avoid map size and scale changes in print composer?Fuzzy PDF export in QGIS running on macSierra OSExport the legend into its 100% size using Print ComposerScale-dependent rendering in QGIS PDF output

                                          PDF-ში გადმოწერა სანავიგაციო მენიუproject page