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
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
add a comment |
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
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
add a comment |
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
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
gdal python-2.7
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
add a comment |
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
add a comment |
4 Answers
4
active
oldest
votes
pip uninstall gdal
pip install numpy
pip install GDAL==$(gdal-config --version) --global-option=build_ext --global-option="-I/usr/include/gdal"
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.
add a comment |
I had the same problem and solved it by building gdal from scratch, after I had Python 2.7 with numpy installed.
add a comment |
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.
New contributor
add a comment |
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.
add a comment |
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
);
);
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
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
pip uninstall gdal
pip install numpy
pip install GDAL==$(gdal-config --version) --global-option=build_ext --global-option="-I/usr/include/gdal"
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.
add a comment |
pip uninstall gdal
pip install numpy
pip install GDAL==$(gdal-config --version) --global-option=build_ext --global-option="-I/usr/include/gdal"
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.
add a comment |
pip uninstall gdal
pip install numpy
pip install GDAL==$(gdal-config --version) --global-option=build_ext --global-option="-I/usr/include/gdal"
pip uninstall gdal
pip install numpy
pip install GDAL==$(gdal-config --version) --global-option=build_ext --global-option="-I/usr/include/gdal"
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.
add a comment |
add a comment |
I had the same problem and solved it by building gdal from scratch, after I had Python 2.7 with numpy installed.
add a comment |
I had the same problem and solved it by building gdal from scratch, after I had Python 2.7 with numpy installed.
add a comment |
I had the same problem and solved it by building gdal from scratch, after I had Python 2.7 with numpy installed.
I had the same problem and solved it by building gdal from scratch, after I had Python 2.7 with numpy installed.
answered Oct 9 '15 at 9:38
HalmackenreuterHalmackenreuter
1211
1211
add a comment |
add a comment |
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.
New contributor
add a comment |
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.
New contributor
add a comment |
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.
New contributor
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.
New contributor
edited yesterday
New contributor
answered yesterday
MandiMandi
11
11
New contributor
New contributor
add a comment |
add a comment |
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.
add a comment |
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.
add a comment |
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.
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.
answered Apr 22 '16 at 17:24
user2102823user2102823
11
11
add a comment |
add a comment |
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.
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
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
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
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
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