我是Python newb,在构建Chatbot时遇到此错误。这是一个Tensorflow软件包错误,我不确定为什么会得到它。我正在使用Python 3.6构建Chatbot。这是我一直得到的错误...
Traceback (most recent call last): File "C:\Users\aryan\PycharmProjects\chatbot\venv\lib\site-packages\tensorflow\python\pywrap_tensorflow.py", line 58, in <module> from tensorflow.python.pywrap_tensorflow_internal import * File "C:\Users\aryan\PycharmProjects\chatbot\venv\lib\site-packages\tensorflow\python\pywrap_tensorflow_internal.py", line 28, in <module> _pywrap_tensorflow_internal = swig_import_helper() File "C:\Users\aryan\PycharmProjects\chatbot\venv\lib\site-packages\tensorflow\python\pywrap_tensorflow_internal.py", line 24, in swig_import_helper _mod = imp.load_module('_pywrap_tensorflow_internal', fp, pathname, description) File "C:\Users\aryan\AppData\Local\Programs\Python\Python36\lib\imp.py", line 242, in load_module return load_dynamic(name, filename, file) File "C:\Users\aryan\AppData\Local\Programs\Python\Python36\lib\imp.py", line 342, in load_dynamic return _load(spec) ImportError: DLL load failed: The specified module could not be found. During handling of the above exception, another exception occurred: "Traceback (most recent call last): File "C:/Users/aryan/PycharmProjects/chatbot/main.py", line 6, in <module> import tflearn File "C:\Users\aryan\PycharmProjects\chatbot\venv\lib\site-packages\tflearn\__init__.py", line 4, in <module> from . import config File "C:\Users\aryan\PycharmProjects\chatbot\venv\lib\site-packages\tflearn\config.py", line 3, in <module> import tensorflow as tf File "C:\Users\aryan\PycharmProjects\chatbot\venv\lib\site-packages\tensorflow\__init__.py", line 41, in <module> from tensorflow.python.tools import module_util as _module_util File "C:\Users\aryan\PycharmProjects\chatbot\venv\lib\site-packages\tensorflow\python\__init__.py", line 50, in <module> from tensorflow.python import pywrap_tensorflow File "C:\Users\aryan\PycharmProjects\chatbot\venv\lib\site-packages\tensorflow\python\pywrap_tensorflow.py", line 69, in <module> raise ImportError(msg) ImportError: Traceback (most recent call last): File "C:\Users\aryan\PycharmProjects\chatbot\venv\lib\site-packages\tensorflow\python\pywrap_tensorflow.py", line 58, in <module> from tensorflow.python.pywrap_tensorflow_internal import * File "C:\Users\aryan\PycharmProjects\chatbot\venv\lib\site-packages\tensorflow\python\pywrap_tensorflow_internal.py", line 28, in <module> _pywrap_tensorflow_internal = swig_import_helper() File "C:\Users\aryan\PycharmProjects\chatbot\venv\lib\site-packages\tensorflow\python\pywrap_tensorflow_internal.py", line 24, in swig_import_helper _mod = imp.load_module('_pywrap_tensorflow_internal', fp, pathname, description) File "C:\Users\aryan\AppData\Local\Programs\Python\Python36\lib\imp.py", line 242, in load_module return load_dynamic(name, filename, file) File "C:\Users\aryan\AppData\Local\Programs\Python\Python36\lib\imp.py", line 342, in load_dynamic return _load(spec) ImportError: DLL load failed: The specified module could not be found. Failed to load the native TensorFlow runtime. See https://www.tensorflow.org/install/errors for some common reasons and solutions. Include the entire stack trace above this error message when asking for help."```
任何帮助深表感谢 :)!