why there is no import of arcade module in vs code for python

1.5k views Asked by At

after run it shows this

 "ModuleNotFoundError: No module named 'arcade'"

no arcade found in VS Code for python.

2

There are 2 answers

0
Jill Cheng On

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

0
RehDR On

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