Tensorflow error : DLL load failed: The specified procedure could not be found
I tried to install tensorflow cpu using pip in my windows8.1 64bit python3.6.0
using pip install tensorflow
but it gives me this error:
Traceback (most recent call last): File "C:UsersLaitooo
SanDesktoptf.py", line 1, in
import tensorflow as tf File "C:UsersLaitooo SanAppDataLocalProgramsPythonPython36libsite-packagestensorflow__init__.py",
line 24, in
from tensorflow.python import * File "C:UsersLaitooo SanAppDataLocalProgramsPythonPython36libsite-packagestensorflowpython__init__.py",
line 52, in
from tensorflow.core.framework.graph_pb2 import * File "C:UsersLaitooo
SanAppDataLocalProgramsPythonPython36libsite-packagestensorflowcoreframeworkgraph_pb2.py",
line 6, in
from google.protobuf import descriptor as _descriptor File "C:UsersLaitooo
SanAppDataLocalProgramsPythonPython36libsite-packagesgoogleprotobufdescriptor.py",
line 47, in
from google.protobuf.pyext import _message ImportError: DLL load failed: The specified procedure could not be found.
i downloaded python36.dll and made sure all other .dll is there and install microsoft visual c++ 2015
i also unistalled tensorflow and installed another version several times but without any result.
can someone help me please
python python-3.x tensorflow
add a comment |
I tried to install tensorflow cpu using pip in my windows8.1 64bit python3.6.0
using pip install tensorflow
but it gives me this error:
Traceback (most recent call last): File "C:UsersLaitooo
SanDesktoptf.py", line 1, in
import tensorflow as tf File "C:UsersLaitooo SanAppDataLocalProgramsPythonPython36libsite-packagestensorflow__init__.py",
line 24, in
from tensorflow.python import * File "C:UsersLaitooo SanAppDataLocalProgramsPythonPython36libsite-packagestensorflowpython__init__.py",
line 52, in
from tensorflow.core.framework.graph_pb2 import * File "C:UsersLaitooo
SanAppDataLocalProgramsPythonPython36libsite-packagestensorflowcoreframeworkgraph_pb2.py",
line 6, in
from google.protobuf import descriptor as _descriptor File "C:UsersLaitooo
SanAppDataLocalProgramsPythonPython36libsite-packagesgoogleprotobufdescriptor.py",
line 47, in
from google.protobuf.pyext import _message ImportError: DLL load failed: The specified procedure could not be found.
i downloaded python36.dll and made sure all other .dll is there and install microsoft visual c++ 2015
i also unistalled tensorflow and installed another version several times but without any result.
can someone help me please
python python-3.x tensorflow
add a comment |
I tried to install tensorflow cpu using pip in my windows8.1 64bit python3.6.0
using pip install tensorflow
but it gives me this error:
Traceback (most recent call last): File "C:UsersLaitooo
SanDesktoptf.py", line 1, in
import tensorflow as tf File "C:UsersLaitooo SanAppDataLocalProgramsPythonPython36libsite-packagestensorflow__init__.py",
line 24, in
from tensorflow.python import * File "C:UsersLaitooo SanAppDataLocalProgramsPythonPython36libsite-packagestensorflowpython__init__.py",
line 52, in
from tensorflow.core.framework.graph_pb2 import * File "C:UsersLaitooo
SanAppDataLocalProgramsPythonPython36libsite-packagestensorflowcoreframeworkgraph_pb2.py",
line 6, in
from google.protobuf import descriptor as _descriptor File "C:UsersLaitooo
SanAppDataLocalProgramsPythonPython36libsite-packagesgoogleprotobufdescriptor.py",
line 47, in
from google.protobuf.pyext import _message ImportError: DLL load failed: The specified procedure could not be found.
i downloaded python36.dll and made sure all other .dll is there and install microsoft visual c++ 2015
i also unistalled tensorflow and installed another version several times but without any result.
can someone help me please
python python-3.x tensorflow
I tried to install tensorflow cpu using pip in my windows8.1 64bit python3.6.0
using pip install tensorflow
but it gives me this error:
Traceback (most recent call last): File "C:UsersLaitooo
SanDesktoptf.py", line 1, in
import tensorflow as tf File "C:UsersLaitooo SanAppDataLocalProgramsPythonPython36libsite-packagestensorflow__init__.py",
line 24, in
from tensorflow.python import * File "C:UsersLaitooo SanAppDataLocalProgramsPythonPython36libsite-packagestensorflowpython__init__.py",
line 52, in
from tensorflow.core.framework.graph_pb2 import * File "C:UsersLaitooo
SanAppDataLocalProgramsPythonPython36libsite-packagestensorflowcoreframeworkgraph_pb2.py",
line 6, in
from google.protobuf import descriptor as _descriptor File "C:UsersLaitooo
SanAppDataLocalProgramsPythonPython36libsite-packagesgoogleprotobufdescriptor.py",
line 47, in
from google.protobuf.pyext import _message ImportError: DLL load failed: The specified procedure could not be found.
i downloaded python36.dll and made sure all other .dll is there and install microsoft visual c++ 2015
i also unistalled tensorflow and installed another version several times but without any result.
can someone help me please
python python-3.x tensorflow
python python-3.x tensorflow
asked Aug 30 '18 at 8:49
Killua SanKillua San
3827
3827
add a comment |
add a comment |
2 Answers
2
active
oldest
votes
There is a similar issue on Github:
Tensorflow issue
Problem should be resolved if you install the wheel file provided in one of the answers. You can find the wheel file here.
Wheel file
You can install the wheel file with pip. First change the current directory to install location. Then,
pip install tensorflow-1.6.0-cp36-cp36m-win_amd64.whl
it uninstalled the last version of tensorflow and upgraded to 1.6 but now it give me new error "cant import name DEBUG" @Koray
– Killua San
Aug 30 '18 at 23:52
Can you try the wheel files on here? If it works I will update the answer. wheel @KilluaSan. Can you share the code you are trying to run too?
– Koray Beyaz
Aug 30 '18 at 23:55
sorry by updated i meant installed the wheel using the code you provided
– Killua San
Aug 31 '18 at 0:15
So I believe tensorflow is working now and you are having another problem with imports. @KilluaSan
– Koray Beyaz
Aug 31 '18 at 0:17
yes XD thank you
– Killua San
Aug 31 '18 at 0:32
add a comment |
I had this error as well, and was able to resolve it by downgrading protobuf from 3.6.1 to 3.6.0:
pip install protobuf==3.6.0
Made my day! so easy
– ephraim
Dec 31 '18 at 10:31
Thank you sir! This should be marked as the correct answer!!!
– Thalis Vilela
Jan 7 at 16:44
add a comment |
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%2f52092810%2ftensorflow-error-dll-load-failed-the-specified-procedure-could-not-be-found%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
2 Answers
2
active
oldest
votes
2 Answers
2
active
oldest
votes
active
oldest
votes
active
oldest
votes
There is a similar issue on Github:
Tensorflow issue
Problem should be resolved if you install the wheel file provided in one of the answers. You can find the wheel file here.
Wheel file
You can install the wheel file with pip. First change the current directory to install location. Then,
pip install tensorflow-1.6.0-cp36-cp36m-win_amd64.whl
it uninstalled the last version of tensorflow and upgraded to 1.6 but now it give me new error "cant import name DEBUG" @Koray
– Killua San
Aug 30 '18 at 23:52
Can you try the wheel files on here? If it works I will update the answer. wheel @KilluaSan. Can you share the code you are trying to run too?
– Koray Beyaz
Aug 30 '18 at 23:55
sorry by updated i meant installed the wheel using the code you provided
– Killua San
Aug 31 '18 at 0:15
So I believe tensorflow is working now and you are having another problem with imports. @KilluaSan
– Koray Beyaz
Aug 31 '18 at 0:17
yes XD thank you
– Killua San
Aug 31 '18 at 0:32
add a comment |
There is a similar issue on Github:
Tensorflow issue
Problem should be resolved if you install the wheel file provided in one of the answers. You can find the wheel file here.
Wheel file
You can install the wheel file with pip. First change the current directory to install location. Then,
pip install tensorflow-1.6.0-cp36-cp36m-win_amd64.whl
it uninstalled the last version of tensorflow and upgraded to 1.6 but now it give me new error "cant import name DEBUG" @Koray
– Killua San
Aug 30 '18 at 23:52
Can you try the wheel files on here? If it works I will update the answer. wheel @KilluaSan. Can you share the code you are trying to run too?
– Koray Beyaz
Aug 30 '18 at 23:55
sorry by updated i meant installed the wheel using the code you provided
– Killua San
Aug 31 '18 at 0:15
So I believe tensorflow is working now and you are having another problem with imports. @KilluaSan
– Koray Beyaz
Aug 31 '18 at 0:17
yes XD thank you
– Killua San
Aug 31 '18 at 0:32
add a comment |
There is a similar issue on Github:
Tensorflow issue
Problem should be resolved if you install the wheel file provided in one of the answers. You can find the wheel file here.
Wheel file
You can install the wheel file with pip. First change the current directory to install location. Then,
pip install tensorflow-1.6.0-cp36-cp36m-win_amd64.whl
There is a similar issue on Github:
Tensorflow issue
Problem should be resolved if you install the wheel file provided in one of the answers. You can find the wheel file here.
Wheel file
You can install the wheel file with pip. First change the current directory to install location. Then,
pip install tensorflow-1.6.0-cp36-cp36m-win_amd64.whl
answered Aug 30 '18 at 9:24
Koray BeyazKoray Beyaz
609
609
it uninstalled the last version of tensorflow and upgraded to 1.6 but now it give me new error "cant import name DEBUG" @Koray
– Killua San
Aug 30 '18 at 23:52
Can you try the wheel files on here? If it works I will update the answer. wheel @KilluaSan. Can you share the code you are trying to run too?
– Koray Beyaz
Aug 30 '18 at 23:55
sorry by updated i meant installed the wheel using the code you provided
– Killua San
Aug 31 '18 at 0:15
So I believe tensorflow is working now and you are having another problem with imports. @KilluaSan
– Koray Beyaz
Aug 31 '18 at 0:17
yes XD thank you
– Killua San
Aug 31 '18 at 0:32
add a comment |
it uninstalled the last version of tensorflow and upgraded to 1.6 but now it give me new error "cant import name DEBUG" @Koray
– Killua San
Aug 30 '18 at 23:52
Can you try the wheel files on here? If it works I will update the answer. wheel @KilluaSan. Can you share the code you are trying to run too?
– Koray Beyaz
Aug 30 '18 at 23:55
sorry by updated i meant installed the wheel using the code you provided
– Killua San
Aug 31 '18 at 0:15
So I believe tensorflow is working now and you are having another problem with imports. @KilluaSan
– Koray Beyaz
Aug 31 '18 at 0:17
yes XD thank you
– Killua San
Aug 31 '18 at 0:32
it uninstalled the last version of tensorflow and upgraded to 1.6 but now it give me new error "cant import name DEBUG" @Koray
– Killua San
Aug 30 '18 at 23:52
it uninstalled the last version of tensorflow and upgraded to 1.6 but now it give me new error "cant import name DEBUG" @Koray
– Killua San
Aug 30 '18 at 23:52
Can you try the wheel files on here? If it works I will update the answer. wheel @KilluaSan. Can you share the code you are trying to run too?
– Koray Beyaz
Aug 30 '18 at 23:55
Can you try the wheel files on here? If it works I will update the answer. wheel @KilluaSan. Can you share the code you are trying to run too?
– Koray Beyaz
Aug 30 '18 at 23:55
sorry by updated i meant installed the wheel using the code you provided
– Killua San
Aug 31 '18 at 0:15
sorry by updated i meant installed the wheel using the code you provided
– Killua San
Aug 31 '18 at 0:15
So I believe tensorflow is working now and you are having another problem with imports. @KilluaSan
– Koray Beyaz
Aug 31 '18 at 0:17
So I believe tensorflow is working now and you are having another problem with imports. @KilluaSan
– Koray Beyaz
Aug 31 '18 at 0:17
yes XD thank you
– Killua San
Aug 31 '18 at 0:32
yes XD thank you
– Killua San
Aug 31 '18 at 0:32
add a comment |
I had this error as well, and was able to resolve it by downgrading protobuf from 3.6.1 to 3.6.0:
pip install protobuf==3.6.0
Made my day! so easy
– ephraim
Dec 31 '18 at 10:31
Thank you sir! This should be marked as the correct answer!!!
– Thalis Vilela
Jan 7 at 16:44
add a comment |
I had this error as well, and was able to resolve it by downgrading protobuf from 3.6.1 to 3.6.0:
pip install protobuf==3.6.0
Made my day! so easy
– ephraim
Dec 31 '18 at 10:31
Thank you sir! This should be marked as the correct answer!!!
– Thalis Vilela
Jan 7 at 16:44
add a comment |
I had this error as well, and was able to resolve it by downgrading protobuf from 3.6.1 to 3.6.0:
pip install protobuf==3.6.0
I had this error as well, and was able to resolve it by downgrading protobuf from 3.6.1 to 3.6.0:
pip install protobuf==3.6.0
edited Nov 2 '18 at 1:17
Stephen Rauch
29k153557
29k153557
answered Nov 2 '18 at 0:59
vdweesvdwees
16114
16114
Made my day! so easy
– ephraim
Dec 31 '18 at 10:31
Thank you sir! This should be marked as the correct answer!!!
– Thalis Vilela
Jan 7 at 16:44
add a comment |
Made my day! so easy
– ephraim
Dec 31 '18 at 10:31
Thank you sir! This should be marked as the correct answer!!!
– Thalis Vilela
Jan 7 at 16:44
Made my day! so easy
– ephraim
Dec 31 '18 at 10:31
Made my day! so easy
– ephraim
Dec 31 '18 at 10:31
Thank you sir! This should be marked as the correct answer!!!
– Thalis Vilela
Jan 7 at 16:44
Thank you sir! This should be marked as the correct answer!!!
– Thalis Vilela
Jan 7 at 16:44
add a comment |
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%2f52092810%2ftensorflow-error-dll-load-failed-the-specified-procedure-could-not-be-found%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