英文:
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 'myvenv'
and activated the env with:
source <path to activate file within 'myvenv' >
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.
通过集体智慧和协作来改善编程学习和解决问题的方式。致力于成为全球开发者共同参与的知识库,让每个人都能够通过互相帮助和分享经验来进步。
评论