No module named pyautogui как исправить

import pyautogui

print("hello")

After running this I am presented with the following:

C:UsersDarkmAnaconda3envsPythonChallengespython.exe C:/Users/Darkm/PycharmProjects/PythonChallenges/Automation1.py
Traceback (most recent call last):
  File "C:/Users/Darkm/PycharmProjects/PythonChallenges/Automation1.py", line 1, in <module>
    import pyautogui
ModuleNotFoundError: No module named 'pyautogui'

Process finished with exit code 1

Could somebody help me understand why I cannot import pyautogui?

Some background information:

1.) I only have one version of python (3.7.4)

2.) I have already installed the module through «pip install pyautogui» in cmd prompt.

3.) Pyautogui is installed under C:UsersDarkmAnaconda3Libsite-packages

4.) Pyautogui does not show up when I go into file > settings > project interpreter and try to add it
manually (it just doesn’t show up).

5.) Have restarted computer multiple times

At this point I cannot figure out why I’m unable to import pyautogui, any help would be greatly appreciated!

Возможно что pyautogui не инсталлирован из pip.
В таком случае в командную строку ввести pip install pyautogui
Если pyautogui уже установлен возможно что он не добавлен в venv. Чтобы добавить его в venv можно нажать «python package» внизу экрана, ввести в поиске «pyautogui» и нажать кнопку «import package». Должно заработать.

Написано

более года назад

A common error you may encounter when using Python is modulenotfounderror: no module named ‘pyautogui’.

This error occurs if you do not install pyautogui before importing it into your program or install the library in the wrong environment.

You can install pyautogui in Python 3 with python3 -m pip install pyautogui.

Or conda install -c conda-forge pyautogui for conda environments.

This tutorial goes through the exact steps to troubleshoot this error for the Windows, Mac and Linux operating systems.


Table of contents

  • What is ModuleNotFoundError?
    • What is PyAutoGUI?
  • Always Use a Virtual Environment to Install Packages
    • How to Install PyAutoGUI on Windows Operating System
    • How to Install PyAutoGUI on Mac Operating System using pip
    • AssertionError: You must first install pyobjc-core and pyobjc
    • How to Install PyAutoGUI on Linux Operating Systems
  • Installing PyAutoGUI Using Anaconda
    • Check PyAutoGUI Version
  • Using PyAutoGUI Example
  • Summary

What is ModuleNotFoundError?

The ModuleNotFoundError occurs when the module you want to use is not present in your Python environment. There are several causes of the modulenotfounderror:

The module’s name is incorrect, in which case you have to check the name of the module you tried to import. Let’s try to import the re module with a double e to see what happens:

import ree
---------------------------------------------------------------------------
ModuleNotFoundError                       Traceback (most recent call last)
1 import ree

ModuleNotFoundError: No module named 'ree'

To solve this error, ensure the module name is correct. Let’s look at the revised code:

import re

print(re.__version__)
2.2.1

You may want to import a local module file, but the module is not in the same directory. Let’s look at an example package with a script and a local module to import. Let’s look at the following steps to perform from your terminal:

mkdir example_package

cd example_package

mkdir folder_1

cd folder_1

vi module.py

Note that we use Vim to create the module.py file in this example. You can use your preferred file editor, such as Emacs or Atom. In module.py, we will import the re module and define a simple function that prints the re version:

import re

def print_re_version():

    print(re.__version__)

Close the module.py, then complete the following commands from your terminal:

cd ../

vi script.py

Inside script.py, we will try to import the module we created.

import module

if __name__ == '__main__':

    mod.print_re_version()

Let’s run python script.py from the terminal to see what happens:

Traceback (most recent call last):
  File "script.py", line 1, in ≺module≻
    import module
ModuleNotFoundError: No module named 'module'

To solve this error, we need to point to the correct path to module.py, which is inside folder_1. Let’s look at the revised code:

import folder_1.module as mod

if __name__ == '__main__':

    mod.print_re_version()

When we run python script.py, we will get the following result:

2.2.1

You can also get the error by overriding the official module you want to import by giving your module the same name.

Lastly, you can encounter the modulenotfounderror when you import a module that is not installed in your Python environment.

What is PyAutoGUI?

The PyAutoGUI library enables Python scripts to control the mouse and keyboard and automate interactions with other applications.

The simplest way to install pyautogui is to use the package manager for Python called pip. The following installation instructions are for the major Python version 3.

Always Use a Virtual Environment to Install Packages

It is always best to install new libraries within a virtual environment. You should not install anything into your global Python interpreter when you develop locally. You may introduce incompatibilities between packages, or you may break your system if you install an incompatible version of a library that your operating system needs. Using a virtual environment helps compartmentalize your projects and their dependencies. Each project will have its environment with everything the code needs to run. Most ImportErrors and ModuleNotFoundErrors occur due to installing a library for one interpreter and trying to use the library with another interpreter. Using a virtual environment avoids this. In Python, you can use virtual environments and conda environments. We will go through how to install pyautogui with both.

How to Install PyAutoGUI on Windows Operating System

First, you need to download and install Python on your PC. Ensure you select the install launcher for all users and Add Python to PATH checkboxes. The latter ensures the interpreter is in the execution path. Pip is automatically on Windows for Python versions 2.7.9+ and 3.4+.

You can check your Python version with the following command:

python3 --version

You can install pip on Windows by downloading the installation package, opening the command line and launching the installer. You can install pip via the CMD prompt by running the following command.

python get-pip.py

You may need to run the command prompt as administrator. Check whether the installation has been successful by typing.

pip --version
virtualenv env

You can activate the environment by typing the command:

envScriptsactivate

You will see “env” in parenthesis next to the command line prompt. You can install pyautogui within the environment by running the following command from the command prompt.

python3 -m pip install pyautogui

We use python -m pip to execute pip using the Python interpreter we specify as Python. Doing this helps avoid ImportError when we try to use a package installed with one version of Python interpreter with a different version. You can use the command which python to determine which Python interpreter you are using.

How to Install PyAutoGUI on Mac Operating System using pip

Open a terminal by pressing command (⌘) + Space Bar to open the Spotlight search. Type in terminal and press enter. To get pip, first ensure you have installed Python3:

python3 --version
Python 3.8.8

Download pip by running the following curl command:

curl https://bootstrap.pypa.io/get-pip.py -o get-pip.py

The curl command allows you to specify a direct download link. Using the -o option sets the name of the downloaded file.

Install pip by running:

python3 get-pip.py

To install PyAutoGUI, first create the virtual environment:

python3 -m venv env

Then activate the environment using:

source env/bin/activate 

You will see “env” in parenthesis next to the command line prompt. You can install PyAutoGUI within the environment by running the following command from the command prompt.

python3 -m pip install pyautogui

AssertionError: You must first install pyobjc-core and pyobjc

You may encounter the following AssertionError when trying to import and use PyAutoGUI:

AssertionError: You must first install pyobjc-core and pyobjc

In which case, you should check if you have installed the required packages and the correct versions compatible with your Python version using:

python3 -m pip list | grep pyobjc

If you try to install pyobjc and get a Requirement already satisfied message, you can use the --force argument as follows:

python3 -m pip install pyobjc --upgrade --force
python3 -m pip install pyobjc-core --upgrade --force

How to Install PyAutoGUI on Linux Operating Systems

All major Linux distributions have Python installed by default. However, you will need to install pip. You can install pip from the terminal, but the installation instructions depend on the Linux distribution you are using. You will need root privileges to install pip. Open a terminal and use the commands relevant to your Linux distribution to install pip.

Installing pip for Ubuntu, Debian, and Linux Mint

sudo apt install python-pip3

Installing pip for CentOS 8 (and newer), Fedora, and Red Hat

sudo dnf install python-pip3

Installing pip for CentOS 6 and 7, and older versions of Red Hat

sudo yum install epel-release

sudo yum install python-pip3

Installing pip for Arch Linux and Manjaro

sudo pacman -S python-pip

Installing pip for OpenSUSE

sudo zypper python3-pip

PyAutoGUI installation on Linux with Pip

To install PyAutoGUI, first, create the virtual environment:

python3 -m venv env

Then activate the environment using:

source env/bin/activate 

You will see “env” in parenthesis next to the command line prompt. You can install pyautogui within the environment by running the following command from the command prompt.

Once you have activated your virtual environment, you can install pyautogui using:

python3 -m pip install pyautogui

Installing PyAutoGUI Using Anaconda

Anaconda is a distribution of Python and R for scientific computing and data science. You can install Anaconda by going to the installation instructions. Once you have installed Anaconda, you can create a virtual environment and install pyautogui.

To create a conda environment you can use the following command:

conda create -n project python=3.8

You can specify a different Python 3 version if you like. Ideally, choose the latest version of Python. Next, you will activate the project container. You will see “project” in parentheses next to the command line prompt.

source activate project

Now you’re ready to install pyautogui using conda.

Once you have installed Anaconda and created your conda environment, you can install pyautogui using the following command:

conda install -c conda-forge pyautogui

Check PyAutoGUI Version

Once you have successfully installed pyautogui, you can check its version. If you used pip to install pyautogui, you can use pip show from your terminal.

python3 -m pip show pyautogui
Name: PyAutoGUI
Version: 0.9.53
Summary: PyAutoGUI lets Python control the mouse and keyboard, and other GUI automation tasks. For Windows, macOS, and Linux, on Python 3 and 2.
Home-page: https://github.com/asweigart/pyautogui

Second, within your python program, you can import pyautogui and then reference the __version__ attribute:

import pyautogui
print(pyautogui.__version__)
0.9.53

If you used conda to install pyautogui, you could check the version using the following command:

conda list -f pyautogui
# Name                    Version                   Build  Channel
pyautogui                 0.9.53                   pypi_0    pypi

Using PyAutoGUI Example

Let’s look at an example of using the pyautogui module to get the size of the primary monitor and the XY position of the mouse:

import pyautogui

screenWidth, screenHeight = pyautogui.size() # Get the size of the primary monitor.
print(screenWidth, screenHeight)

currentMouseX, currentMouseY = pyautogui.position() # Get the XY position of the mouse.
print(currentMouseX, currentMouseY)

Let’s run the code to print the monitor size and position of the mouse to the console

1792 1120
293 293

Summary

Congratulations on reading to the end of this tutorial.

Go to the online courses page on Python to learn more about Python for data science and machine learning.

For further reading on missing modules in Python, go to the article:

  • How to Solve Python ModuleNotFoundError: no module named ‘skimage’
  • How to Solve Python ModuleNotFoundError: no module named ‘pymongo’
  • How to Solve Python ModuleNotFoundError: no module named ‘psutil’

Have fun and happy researching!

Encountering an error stating modulenotfounderror: no module named ‘pyautogui’ in Python?

Looking for a solution to fix this error? Read on to solve your problem.

In this article, we will show you how to solve the modulenotfounderror: no module named ‘pyautogui’.

This error indicates that the ‘pyautogui‘ module is not installed in your system or Python environment.

What is Python?

Python is one of the most popular programming languages.

It is used for developing a wide range of applications.

In addition, Python is a high-level programming language that is used by most developers due to its flexibility.

Returning to our issue, we must take a few actions to fix this error.

So, without further ado, let’s move on to our “how to fix this error” tutorial.

How to solve “no module named ‘pyautogui’” in Python

Time needed: 2 minutes.

Here’s how to resolve the modulenotfounderror: no module named ‘pyautogui’ in Python.

  1. Install the ‘pyautogui’ module.

    Resolving the error modulenotfounderror: no module named ‘pyautogui’ is an easy task.

    All you have to do is install the ‘pyautogui‘ module.

    To install this module, open your cmd or command prompt, then input the command pip install pyautogui.

    pip install pyautogui - Modulenotfounderror: no module named 'pyautogui' [SOLVED]

    The command pip install pyautogui will download and install the ‘pyautogui‘ module on your system.

    If you’re using Python 3, use the command pip3 install pyautogui.

  2. Check if the package is installed.

    To check if it is installed successfully, input the command pip show pyautogui.

    This command will display information about your pyautogui package, including its location.

    If you’re using Jupyter Notebook, use the command !pip show pyautogui.

    pip show pyautogui -Modulenotfounderror: no module named 'pyautogui' [SOLVED]

    However, if it is not installed in your system, this will come out: WARNING: Package(s) not found: pyautogui (see image below).

    pip show pyautogui

See also: Modulenotfounderror no module named tabulate

How to install PyAutoGUI on macOS or Linux

The following are the steps on how to install pyautogui on macOS or Linux:

→ Search for Terminal and open it.
→ Next, input the command pip install pyautogui, then click the enter key.

If you get an error saying “pip” isn’t found, use the command python -m.

It will look like this: python -m pip install pyautogui.

However, if you get a permissions error, use the command sudo pip install pyautogui.

Installing the pyautogui module on different platforms

The following are the commands you can use to install the pyautogui module on your system if you’re using a different platform.

Jupyter Notebook

→ If you’re using Jupyter Notebook, use the command:

!pip install pyautogui

Anaconda

→ If you’re using Anaconda, use the command:

conda install -c conda-forge pyautogui

Py Alias

→ If you’re using py alias, use the command:

py -m pip install pyautogui

Commands you might need

  • pip list

    This command will display all the packages installed on your system, including their versions.

    If you’re using Jupyter Notebook, use the !pip list command.

    However, if you’re using Anaconda, use the command conda list.

  • python -m

    Include this command in your pip install pyautogui command if you get an error message stating that “pip” cannot be found.

    Example: python -m pip install pyautogui

    However, if you’re using Python 3, use the command python3 -m pip install pyautogui.

  • pip install –upgrade pip

    Use this command to upgrade the pip package manager to its newest version.

    If your pip is already in the latest version, this will come out: “Requirement already satisfied.”

  • python –version

    Use this command if you want to check what version of Python you have.

Conclusion

In conclusion, the modulenotfounderror: no module named ‘pyautogui’ can be easily solved by installing the ‘pyautogui‘ module in your system.

By following the guide above, there’s no doubt that you’ll be able to resolve this error quickly.

We hope you’ve learned a lot from this.

Thank you for reading!

Modulenotfounderror is an Error that you will get when you have not installed the package in your system. Are you getting the error modulenotfounderror: no module named pyautogui then this post is for you. In this entire tutorial, you will know how to solve this issue in a simple way.

What is PyAutoGUI?

PyAutoGUI is a python package that allows you to simulate mouse cursor moves and clicks. It also simulates keyboard button presses. You can say that this package allows you to programmatically control the keyboard and mouse and automate the UI testing.

The root cause of the modulenotfounderror: no module named pyautogui is that you have not installed the PyAutoGUI package in your system. How you will know that it is not installed in your system. The answer is that when you try to import the pyautogui package and run it then you will get the modulenotfounderror: no module named pyautogui error.

import pyautogui

No module named pyautogui error

No module named pyautogui error

If you are using the Pycharm IDE then you will get the underline below the pyautogui word. The python interpreter is telling you that you have not installed that package in your system.

The same error you will see when you try to import the pyautogui package in terminal or command prompt.

Solve the modulenotfounderror: no module named pyautogui Error

The solution for the no module named pyautogui is very simple you have to install the pyautogui package in your system. To install you have to use the pip3 or pip command.

Use the pip3 command if your python version is 3. xx and the pip command if you are using the python 2. xx version.

Open your terminal or command prompt and use the below command.

Python 3. xx

pip3 install PyAutoGUI

Python 2.xx
pip install PyAutoGUI

Installing pyautogui on system

Installing pyautogui on system

Now if you import the pyautogui package then you will not get any module named pyautogui error.

Conclusion

PyAutoGUI python package is very useful for automatic control of your keyboard and mouse. If you are getting theno module named pyautogui error then the above method will solve your problem.

Please let me know if you are unable to solve the issue.

Понравилась статья? Поделить с друзьями:
  • Как найти длину дерева по его тени
  • Как найти видео в самсунге галакси
  • Как исправить провисшую спину у собак
  • Правильный девятиугольник как найти угол
  • Разбухла дверная коробка как исправить