Visual Studio 2017预览版:Python工作负载:Python 3.6:Anaconda3
我有:
import cx_Oracle as ax
import numpy as nm
import pandas as pd
所有这些软件包都已安装在Anaconda3 / Lib / site-packages
中在import numpy as nm
上使用带有断点的Debug(F5)时 - 我跳过那个语句,一切都很顺利。但是,当我跳过import pandas as pd
时会弹出一条错误消息:
The debug adapter exited unexpectedly.
当我进入此声明时,消息是
Frame not in module - The current stack frame was not found in a loaded module.
当我查看反汇编时,消息为No disassembly available
。
活动日志错误是:
Failed to parse service's registered package GUID ({BEB01DDF-9D2B-435B-A9E7-76557E2B6B52) for service {094e1961-17bf-4038-9bde-e7e11825c67b} as a GUID.
此问题也发生在import matplotlib
声明中。
我已经在互联网上查找了这个问题的答案,但找不到答案。我是Visual Studio和Python的新手。非常感谢任何帮助。
由于