-4

运行后显示这个

 "ModuleNotFoundError: No module named 'arcade'"

在 VS Code for python 中没有找到街机。

4

2 回答 2

2

我使用 VSCode 的 conda环境成功安装了这个模块。

先决条件:在VSCode之外安装Anaconda,在VSCode中选择这个conda环境并在终端中激活:

在此处输入图像描述

  1. 请安装模块 " arcade": ( conda install arcade)

  2. 请安装相关的依赖包“ geos”和“ shapely”:( conda install geos,, conda install shapely):

  3. 跑:

    在此处输入图像描述

于 2020-12-18T05:39:38.610 回答
0

Open cmd and write this: pip install arcade

after the installation try importing arcade in vs code

vs code uses the same python interpreter as the python terminal

于 2020-12-17T13:21:38.280 回答