1

对于我正在使用 python 街机的课程。我用pip install arcade. 当我尝试导入它时,import arcade它会弹出ModuleNotFoundError: No module named 'arcade'

我已经卸载并重新安装了街机。当我进入时它会出现pip freeze。我在 Windows 10 上使用 VS Code。当我查看 VS Code 中的“错误”选项卡时,它显示“无法导入 'arcade' pylint(import-error)[3,1]”

4

2 回答 2

0

我曾经有同样的问题。python -m pip install <module>在我的情况下,解决方案是通过运行而不是安装模块 pip install <module>

于 2019-09-18T21:10:17.483 回答
0

我在 jupyter 笔记本中遇到了同样的问题,我已经解决了如下问题:

pip install notebook
于 2021-02-16T11:31:15.680 回答