我试图在Visual Studio Code中调试我的Python代码。它跳过了我所有的断点,并在genericpath.py中找到了一个错误。
发生异常:FileNotFoundError [WinError 2]系统找不到指定的文件:'C:\Users\mlongtin\AppData\Local\Programs\Python\Python39\Python39.zip'文件“C:\Users\mlongtin\AppData\Local\Programs\Python\Python39\Lib\genericpath.py”,第19行,存在os.stat(路径)文件“C:\Users\mlongtin\AppData\Local\Programs\Python\Python39\Lib\runpy.py”,第87行,在_run_code exec(code,run_globals)File“C:\Users\mlongtin\AppData\Local\Programs\Python\Python39\Lib\runpy.py”,line 197,in _run_module_as_main return _run_code(code,main_globals,None,FileNotFoundError:[WinError 2] The system cannot find the file specified:“C:\Users\mlongtin\AppData\Local\Programs\Python39\Lib\Runpy.py”,line 197,in_run_module_as_main return_run_code(code,main_globals,None,FileNotFoundError:[WinError 2]\Users\mlongtin\AppData\Local\Programs\Python\Python39\python39.zip'
我已经尝试重新启动Visual Studio和调试器,但没有任何工作。这是我的launch.json文件:
"version": "0.2.0",
"configurations": [
{
"name": "Python: Current File",
"type": "python",
"request": "launch",
"program": "${file}",
"console": "integratedTerminal",
"justMyCode": false
}
]
1条答案
按热度按时间jm81lzqq1#
为什么你有
python39.zip
。我想你在安装Python的时候没有安装。
从python.org下载python并重新安装python可能会解决这个问题。