0

How to solve No module named 'pyautogui' in VS code(Jupyter env)?

i want use pyautogui Module

import pyautogui

ModuleNotFoundError: No module named 'pyautogui'

Site referenced to resolve the error

PackagesNotFoundError: The following packages are not available from current channels:

I tried in VS code(jupyter env) to solve this error.

  1. Created Jupiter env in vs code.
  2. conda activate yourenvname
  3. conda install -n yourenvname pyautogui

-> error occured

enter image description here

how to solve error message?

Python-97
  • 288
  • 2
  • 13

1 Answers1

1

Enter pip install pyautogui to resolve.

I just tested it.

elk_basic
  • 153
  • 2
  • 2
  • 9