Tensorflow DLL import failed
Using python 3.6.1, I've installed tensorflow-gpu via pip.
Whenever I execute my script it bonks out on the first tensorflow import statement with the following stack trace:
Traceback (most recent call last):
File "C:UsersinfoDesktopToolsPython36libsite-packagestensorflowpythonpywrap_tensorflow.py", line 58, in <module>
from tensorflow.python.pywrap_tensorflow_internal import *
File "C:UsersinfoDesktopToolsPython36libsite-packagestensorflowpythonpywrap_tensorflow_internal.py", line 28, in <module>
_pywrap_tensorflow_internal = swig_import_helper()
File "C:UsersinfoDesktopToolsPython36libsite-packagestensorflowpythonpywrap_tensorflow_internal.py", line 24, in swig_import_helper
_mod = imp.load_module('_pywrap_tensorflow_internal', fp, pathname, description)
File "C:UsersinfoDesktopToolsPython36libimp.py", line 243, in load_module
return load_dynamic(name, filename, file)
File "C:UsersinfoDesktopToolsPython36libimp.py", line 343, in load_dynamic
return _load(spec)
ImportError: DLL load failed: The specified module could not be found.
I've followed tensorflow-gpu setup by the book (i.e. following the steps in the official tensorflow documentaion to the letter). Has anyone had problems with this before?
EDIT:
I've also tried installing tensorflow cpu via pip, but then I get a different error message:
Your CPU supports instructions that this TensorFlow binary was not compiled to use: AVX2
My computers specs:
i7 4500K @ 5GHz
NVidea 1070
Samsung SSD
32GB DDR4 RAM
python tensorflow
add a comment |
Using python 3.6.1, I've installed tensorflow-gpu via pip.
Whenever I execute my script it bonks out on the first tensorflow import statement with the following stack trace:
Traceback (most recent call last):
File "C:UsersinfoDesktopToolsPython36libsite-packagestensorflowpythonpywrap_tensorflow.py", line 58, in <module>
from tensorflow.python.pywrap_tensorflow_internal import *
File "C:UsersinfoDesktopToolsPython36libsite-packagestensorflowpythonpywrap_tensorflow_internal.py", line 28, in <module>
_pywrap_tensorflow_internal = swig_import_helper()
File "C:UsersinfoDesktopToolsPython36libsite-packagestensorflowpythonpywrap_tensorflow_internal.py", line 24, in swig_import_helper
_mod = imp.load_module('_pywrap_tensorflow_internal', fp, pathname, description)
File "C:UsersinfoDesktopToolsPython36libimp.py", line 243, in load_module
return load_dynamic(name, filename, file)
File "C:UsersinfoDesktopToolsPython36libimp.py", line 343, in load_dynamic
return _load(spec)
ImportError: DLL load failed: The specified module could not be found.
I've followed tensorflow-gpu setup by the book (i.e. following the steps in the official tensorflow documentaion to the letter). Has anyone had problems with this before?
EDIT:
I've also tried installing tensorflow cpu via pip, but then I get a different error message:
Your CPU supports instructions that this TensorFlow binary was not compiled to use: AVX2
My computers specs:
i7 4500K @ 5GHz
NVidea 1070
Samsung SSD
32GB DDR4 RAM
python tensorflow
Try to add the cuDNN DLL to your %PATH%.
– Hagbard
Nov 13 '18 at 10:58
Is that because I've installed tensorflow-gpu rather than bog standard tensorflow? I tried bog standard tensorflow cpu, but I then get a different error message. I'm going to update my question to make this clearer.
– Thomas Cook
Nov 13 '18 at 11:02
Yes, that's only relevant if you install tensorflow-gpu. You can find more suggestions concering your problem here.
– Hagbard
Nov 13 '18 at 11:18
add a comment |
Using python 3.6.1, I've installed tensorflow-gpu via pip.
Whenever I execute my script it bonks out on the first tensorflow import statement with the following stack trace:
Traceback (most recent call last):
File "C:UsersinfoDesktopToolsPython36libsite-packagestensorflowpythonpywrap_tensorflow.py", line 58, in <module>
from tensorflow.python.pywrap_tensorflow_internal import *
File "C:UsersinfoDesktopToolsPython36libsite-packagestensorflowpythonpywrap_tensorflow_internal.py", line 28, in <module>
_pywrap_tensorflow_internal = swig_import_helper()
File "C:UsersinfoDesktopToolsPython36libsite-packagestensorflowpythonpywrap_tensorflow_internal.py", line 24, in swig_import_helper
_mod = imp.load_module('_pywrap_tensorflow_internal', fp, pathname, description)
File "C:UsersinfoDesktopToolsPython36libimp.py", line 243, in load_module
return load_dynamic(name, filename, file)
File "C:UsersinfoDesktopToolsPython36libimp.py", line 343, in load_dynamic
return _load(spec)
ImportError: DLL load failed: The specified module could not be found.
I've followed tensorflow-gpu setup by the book (i.e. following the steps in the official tensorflow documentaion to the letter). Has anyone had problems with this before?
EDIT:
I've also tried installing tensorflow cpu via pip, but then I get a different error message:
Your CPU supports instructions that this TensorFlow binary was not compiled to use: AVX2
My computers specs:
i7 4500K @ 5GHz
NVidea 1070
Samsung SSD
32GB DDR4 RAM
python tensorflow
Using python 3.6.1, I've installed tensorflow-gpu via pip.
Whenever I execute my script it bonks out on the first tensorflow import statement with the following stack trace:
Traceback (most recent call last):
File "C:UsersinfoDesktopToolsPython36libsite-packagestensorflowpythonpywrap_tensorflow.py", line 58, in <module>
from tensorflow.python.pywrap_tensorflow_internal import *
File "C:UsersinfoDesktopToolsPython36libsite-packagestensorflowpythonpywrap_tensorflow_internal.py", line 28, in <module>
_pywrap_tensorflow_internal = swig_import_helper()
File "C:UsersinfoDesktopToolsPython36libsite-packagestensorflowpythonpywrap_tensorflow_internal.py", line 24, in swig_import_helper
_mod = imp.load_module('_pywrap_tensorflow_internal', fp, pathname, description)
File "C:UsersinfoDesktopToolsPython36libimp.py", line 243, in load_module
return load_dynamic(name, filename, file)
File "C:UsersinfoDesktopToolsPython36libimp.py", line 343, in load_dynamic
return _load(spec)
ImportError: DLL load failed: The specified module could not be found.
I've followed tensorflow-gpu setup by the book (i.e. following the steps in the official tensorflow documentaion to the letter). Has anyone had problems with this before?
EDIT:
I've also tried installing tensorflow cpu via pip, but then I get a different error message:
Your CPU supports instructions that this TensorFlow binary was not compiled to use: AVX2
My computers specs:
i7 4500K @ 5GHz
NVidea 1070
Samsung SSD
32GB DDR4 RAM
python tensorflow
python tensorflow
edited Nov 13 '18 at 11:04
Thomas Cook
asked Nov 13 '18 at 10:52
Thomas CookThomas Cook
668318
668318
Try to add the cuDNN DLL to your %PATH%.
– Hagbard
Nov 13 '18 at 10:58
Is that because I've installed tensorflow-gpu rather than bog standard tensorflow? I tried bog standard tensorflow cpu, but I then get a different error message. I'm going to update my question to make this clearer.
– Thomas Cook
Nov 13 '18 at 11:02
Yes, that's only relevant if you install tensorflow-gpu. You can find more suggestions concering your problem here.
– Hagbard
Nov 13 '18 at 11:18
add a comment |
Try to add the cuDNN DLL to your %PATH%.
– Hagbard
Nov 13 '18 at 10:58
Is that because I've installed tensorflow-gpu rather than bog standard tensorflow? I tried bog standard tensorflow cpu, but I then get a different error message. I'm going to update my question to make this clearer.
– Thomas Cook
Nov 13 '18 at 11:02
Yes, that's only relevant if you install tensorflow-gpu. You can find more suggestions concering your problem here.
– Hagbard
Nov 13 '18 at 11:18
Try to add the cuDNN DLL to your %PATH%.
– Hagbard
Nov 13 '18 at 10:58
Try to add the cuDNN DLL to your %PATH%.
– Hagbard
Nov 13 '18 at 10:58
Is that because I've installed tensorflow-gpu rather than bog standard tensorflow? I tried bog standard tensorflow cpu, but I then get a different error message. I'm going to update my question to make this clearer.
– Thomas Cook
Nov 13 '18 at 11:02
Is that because I've installed tensorflow-gpu rather than bog standard tensorflow? I tried bog standard tensorflow cpu, but I then get a different error message. I'm going to update my question to make this clearer.
– Thomas Cook
Nov 13 '18 at 11:02
Yes, that's only relevant if you install tensorflow-gpu. You can find more suggestions concering your problem here.
– Hagbard
Nov 13 '18 at 11:18
Yes, that's only relevant if you install tensorflow-gpu. You can find more suggestions concering your problem here.
– Hagbard
Nov 13 '18 at 11:18
add a comment |
0
active
oldest
votes
Your Answer
StackExchange.ifUsing("editor", function () {
StackExchange.using("externalEditor", function () {
StackExchange.using("snippets", function () {
StackExchange.snippets.init();
});
});
}, "code-snippets");
StackExchange.ready(function() {
var channelOptions = {
tags: "".split(" "),
id: "1"
};
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: true,
noModals: true,
showLowRepImageUploadWarning: true,
reputationToPostImages: 10,
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%2fstackoverflow.com%2fquestions%2f53279390%2ftensorflow-dll-import-failed%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
0
active
oldest
votes
0
active
oldest
votes
active
oldest
votes
active
oldest
votes
Thanks for contributing an answer to Stack Overflow!
- 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%2fstackoverflow.com%2fquestions%2f53279390%2ftensorflow-dll-import-failed%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
Try to add the cuDNN DLL to your %PATH%.
– Hagbard
Nov 13 '18 at 10:58
Is that because I've installed tensorflow-gpu rather than bog standard tensorflow? I tried bog standard tensorflow cpu, but I then get a different error message. I'm going to update my question to make this clearer.
– Thomas Cook
Nov 13 '18 at 11:02
Yes, that's only relevant if you install tensorflow-gpu. You can find more suggestions concering your problem here.
– Hagbard
Nov 13 '18 at 11:18