-4

after run it shows this

 "ModuleNotFoundError: No module named 'arcade'"

no arcade found in VS Code for python.

Jill Cheng
  • 9,179
  • 1
  • 20
  • 25

2 Answers2

3

I successfully installed this module using the conda environment of VSCode.

Prerequisite: Install Anaconda outside of VSCode, select this conda environment in VSCode and activate it in the terminal:

enter image description here

  1. Please install the module "arcade": (conda install arcade)

  2. Please install related dependency packages "geos" and "shapely": (conda install geos, conda install shapely):

  3. Run:

    enter image description here

Jill Cheng
  • 9,179
  • 1
  • 20
  • 25
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

RehDR
  • 11
  • 1