Visual Studio Code 与 Python 的问题

发布于 2025-01-10 19:02:41 字数 1263 浏览 0 评论 0原文

有人可以帮我解决这个问题,我在 Vsc 中遇到此错误: “环境变量‘Path’似乎有一些路径包含‘”’字符。已知此类字符的存在会导致 Python 扩展无法加载。如果扩展无法加载,请修改您的路径以删除此“”字符。

这是我的补丁系统: " %SystemRoot%\system32;%SystemRoot%;%SystemRoot%\System32\Wbem;%SYSTEMROOT%\System32\WindowsPowerShell\v1.0;C:\Program Files\Microsoft MPI\Bin;C:\Program Files\Common Files \Oracle\Java\javapath;C:\Program Files (x86)\Common文件\Oracle\Java\javapath;C:\ProgramData\Oracle\Java\javapath;%SYSTEMROOT%\System32\OpenSSH;C:\src\flutter\bin;"c:\windows;c:\windows\system32"; C:;C:\Users\Admin;C:\Microsoft VS代码\bin;C:\Python\Python310;C:\Python\Python310\Scripts;C:\Users\Admin\Desktop;C:\Program Files\Microsoft SQL Server\110\Tools\Binn;C:\Program Files (x86)\Microsoft SQL Server\150\Tools\Binn;C:\Program Files\Microsoft SQL Server\150\Tools\Binn;C:\Program Files (x86)\Microsoft SQL服务器\150\DTS\Binn;C:\Program Files\Microsoft SQL Server\150\DTS\Binn;C:\Program Files\Microsoft SQL Server\Client SDK\ODBC\170\Tools\Binn;C:\Program Files \Azure Data Studio\bin;C:\Program Files\nodejs;C:\Program Files\Git\cmd; "

修补程序用户是: “ C:;C:\Python\Python310;C:\src\flutter;C:\Users\Admin;C:\Python\Python310\Scripts;C:\Users\Admin\Desktop;C:\Microsoft VS Code\ bin;C:\Program Files\Azure Data Studio\bin;C:\Users\Admin\AppData\Roaming\npm "

Someone can help me to solve this problem, i have this error in Vsc:
"The environment variable 'Path' seems to have some paths containing the '"' character. The existence of such a character is known to have caused the Python extension to not load. If the extension fails to load please modify your paths to remove this '"' character."

this is my patch system:
" %SystemRoot%\system32;%SystemRoot%;%SystemRoot%\System32\Wbem;%SYSTEMROOT%\System32\WindowsPowerShell\v1.0;C:\Program Files\Microsoft MPI\Bin;C:\Program Files\Common Files\Oracle\Java\javapath;C:\Program Files (x86)\Common Files\Oracle\Java\javapath;C:\ProgramData\Oracle\Java\javapath;%SYSTEMROOT%\System32\OpenSSH;C:\src\flutter\bin;"c:\windows;c:\windows\system32";C:;C:\Users\Admin;C:\Microsoft VS Code\bin;C:\Python\Python310;C:\Python\Python310\Scripts;C:\Users\Admin\Desktop;C:\Program Files\Microsoft SQL Server\110\Tools\Binn;C:\Program Files (x86)\Microsoft SQL Server\150\Tools\Binn;C:\Program Files\Microsoft SQL Server\150\Tools\Binn;C:\Program Files (x86)\Microsoft SQL Server\150\DTS\Binn;C:\Program Files\Microsoft SQL Server\150\DTS\Binn;C:\Program Files\Microsoft SQL Server\Client SDK\ODBC\170\Tools\Binn;C:\Program Files\Azure Data Studio\bin;C:\Program Files\nodejs;C:\Program Files\Git\cmd; "

Patch user is:
" C:;C:\Python\Python310;C:\src\flutter;C:\Users\Admin;C:\Python\Python310\Scripts;C:\Users\Admin\Desktop;C:\Microsoft VS Code\bin;C:\Program Files\Azure Data Studio\bin;C:\Users\Admin\AppData\Roaming\npm "

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

最佳男配角 2025-01-17 19:02:41

如果您查看系统路径字符串,您会在列表中间看到

...bin;"c:\windows;c:\windows\system32";C...

注意那些双引号,它们不应该在那里。错误消息明确表明这是问题所在,因此我在您的问题中搜索了 " 并找到了这些。

因此解决方案是编辑您的系统路径并替换 "c:\windows ;c:\windows\system32" by c:\windows;c:\windows\system32 不带引号。

If you look in your system path string, you'll see in the middle of the list

...bin;"c:\windows;c:\windows\system32";C...

Notice those double quotes, they should not be there. The error message was explicit about that being the problem, so I searched for " in your question and found those.

So the solution will be to edit your system path and replace "c:\windows;c:\windows\system32" by c:\windows;c:\windows\system32 without quotes.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文