customtkinter 在 VS Code 中未被识别。

huangapple go评论65阅读模式
英文:

customtkinter is not recognised by VS Code

问题

我正在学习Python GUI 的初级阶段。
我正在使用 customtkinter 库。
我已在系统上安装了 customtkinter。
我在项目文件夹中创建了一个虚拟环境,并激活它:

python -m venv 'myvenv'

并使用以下命令激活该环境:

source <激活文件路径,位于 'myvenv' 中>

令人惊讶的是,尽管已经安装了 customtkinter 模块(我在本地和虚拟环境中都运行了 pip list),但当我尝试在我的文件中导入它时,它仍然无法被识别。

我正在使用 macOS 12 和 Python 3.10.6。

帮助,谢谢。

英文:

I am in my early steps to learning python GUI.
I am using customtkinter library.
I have installed the customtkinter on my system.
I created a virtual environment within my project folder
with:

python -m venv &#39;myvenv&#39;

and activated the env with:

source &lt;path to activate file within &#39;myvenv&#39; &gt;

suprisingly the customtkinter module still isn't recognized when I import it to my file,
despite being installed (I did pip list on both local and virtual env).

I'm using macOS 12 and python 3.10.6.

help, Thanks.

答案1

得分: 1

我认为这是由于错误的Python解释器引起的。

你可以使用快捷键“Ctrl+Shift+P”并输入“Python: Select Interpreter”来选择你的虚拟环境。

英文:

I think this was caused by the incorrect Python interpreter.

You can use shortcuts "Ctrl+Shift+P" and type "Python: Select Interpreter" to choose your virtual environment.

huangapple
  • 本文由 发表于 2023年2月19日 23:59:57
  • 转载请务必保留本文链接:https://go.coder-hub.com/75501436.html
匿名

发表评论

匿名网友

:?: :razz: :sad: :evil: :!: :smile: :oops: :grin: :eek: :shock: :???: :cool: :lol: :mad: :twisted: :roll: :wink: :idea: :arrow: :neutral: :cry: :mrgreen:

确定