Python 在 Visual Studio 代码中找不到 PyPi 包
Python can't find PyPi Package in Visual Studio Code
我最近在 PyPi 上发布了一个名为 ShellScriptHandeler 的包,一切正常,您可以下载它并且 Visual Studio 代码也显示它存在,但是当我尝试导入它时,我收到错误消息:没有名为 ShellScriptHandeler 的模块。
import ShellScriptHandeler
ShellScriptHandeler.Basic.open("test.sh")
我不知道为什么会这样,因此也不知道要提供什么样的信息。您可以使用“pip install ShellScriptHandeler”下载软件包
在终端中使用命令pip show ShellScriptHandeler
检查你的包安装位置。
然后从 VSCode 的左下角检查您 select 编辑了哪个 python 解释器。如果不是你安装包的环境,可以点击select合适的
我最近在 PyPi 上发布了一个名为 ShellScriptHandeler 的包,一切正常,您可以下载它并且 Visual Studio 代码也显示它存在,但是当我尝试导入它时,我收到错误消息:没有名为 ShellScriptHandeler 的模块。
import ShellScriptHandeler
ShellScriptHandeler.Basic.open("test.sh")
我不知道为什么会这样,因此也不知道要提供什么样的信息。您可以使用“pip install ShellScriptHandeler”下载软件包
在终端中使用命令pip show ShellScriptHandeler
检查你的包安装位置。
然后从 VSCode 的左下角检查您 select 编辑了哪个 python 解释器。如果不是你安装包的环境,可以点击select合适的