Ошибка при установке pyautogui

I have been installing PyautoGui on my WIN10 PC. But I am getting the following error, i have been getting a lot of errors jut to get this far.

i have been reinstalling python so its destination folder is in C:Python instead of C:UsersHomeAppDataLocalProgramsPythonPython35-32 mabye thats why ? How do i fix this ?

C:PythonScripts>pip.exe install pyautogui Collecting pyautogui
Using cached PyAutoGUI-0.9.33.zip Collecting pymsgbox (from pyautogui)
Using cached PyMsgBox-1.0.3.zip Collecting PyTweening>=1.0.1 (from
pyautogui) Using cached PyTweening-1.0.3.zip Collecting Pillow (from
pyautogui) Using cached Pillow-3.3.1-cp35-cp35m-win32.whl Collecting
pyscreeze (from pyautogui) Using cached PyScreeze-0.1.8.zip
Complete output from command python setup.py egg_info:
Traceback (most recent call last):
File «», line 1, in
File «C:UsersHomeAppDataLocalTemppip-build-kxm3249epyscreezesetup.py»,
line 6, in
version=import(‘pyscreeze’).version,
File «c:usershomeappdatalocaltemppip-build-kxm3249epyscreezepyscreeze__init__.py»,
line 21, in
from PIL import Image
ImportError: No module named ‘PIL’

Command «python setup.py egg_info» failed with error code 1 in
C:UsersHomeAppDataLocalTemppip-build-kxm3249epyscreeze

Aatif Akhter's user avatar

Aatif Akhter

2,0661 gold badge23 silver badges46 bronze badges

asked Sep 17, 2016 at 9:03

Martin Led's user avatar

I encountered the same error message as you did. This workaround worked for me. Try these steps in order…

  1. Install PyScreeze 0.1.7.

  2. Update PyScreeze to 0.1.8.

  3. Install PyAutoGui.

I hope this helps.

answered Sep 19, 2016 at 0:50

Mike's user avatar

I also encountered the same error (albeit on Ubuntu 14.04). The missing module PIL is named Pillow (As said in this answer). So what I tried was (same in MacOS I think):

sudo pip3 install pillow

That translated to Windows would be:

pip.exe install pillow

Hope this helps you further.

Community's user avatar

answered Sep 19, 2016 at 13:41

Carolus's user avatar

CarolusCarolus

4774 silver badges16 bronze badges

Instead of letting PyautoGUI get all the packages for you.

Install all of them individually. Then, run the pip install --upgrade _packageName_

Then run pip install pyautogui.

Hope this helps.

answered Oct 18, 2016 at 15:59

Pragyaditya Das's user avatar

Pragyaditya DasPragyaditya Das

1,6385 gold badges25 silver badges44 bronze badges

I’m happy to report that this installation error has been fixed as of version 0.9.34. All you have to do is install or update PyAutoGUI from PyPI.

answered Mar 19, 2017 at 2:47

Al Sweigart's user avatar

Al SweigartAl Sweigart

11.4k10 gold badges63 silver badges92 bronze badges

try

pip uninstall pyautogui

then

pip install pyautogui

answered Jan 1, 2020 at 23:44

RandomSqueaker's user avatar

There is a possibility that on windows it is not rightly configured on windows path and therefore it cant find the module, to fix this try:

Control Panel System and Security System

then click: Environment Variables, and double click on path and append the directory you want to use.

full explanation on: https://helpdeskgeek.com/windows-10/add-windows-path-environment-variable/

you can also try:

Cmd:

python -m pip install < module >


git clone https://github.com/USERNAME/REPOSITORY

or

To append to PYTHONPATH:

IDE:

import sys

sys.path.append('< path >')

answered Oct 13, 2020 at 9:17

tinus's user avatar

tinustinus

1511 silver badge7 bronze badges

I have been installing PyautoGui on my WIN10 PC. But I am getting the following error, i have been getting a lot of errors jut to get this far.

i have been reinstalling python so its destination folder is in C:Python instead of C:UsersHomeAppDataLocalProgramsPythonPython35-32 mabye thats why ? How do i fix this ?

C:PythonScripts>pip.exe install pyautogui Collecting pyautogui
Using cached PyAutoGUI-0.9.33.zip Collecting pymsgbox (from pyautogui)
Using cached PyMsgBox-1.0.3.zip Collecting PyTweening>=1.0.1 (from
pyautogui) Using cached PyTweening-1.0.3.zip Collecting Pillow (from
pyautogui) Using cached Pillow-3.3.1-cp35-cp35m-win32.whl Collecting
pyscreeze (from pyautogui) Using cached PyScreeze-0.1.8.zip
Complete output from command python setup.py egg_info:
Traceback (most recent call last):
File «», line 1, in
File «C:UsersHomeAppDataLocalTemppip-build-kxm3249epyscreezesetup.py»,
line 6, in
version=import(‘pyscreeze’).version,
File «c:usershomeappdatalocaltemppip-build-kxm3249epyscreezepyscreeze__init__.py»,
line 21, in
from PIL import Image
ImportError: No module named ‘PIL’

Command «python setup.py egg_info» failed with error code 1 in
C:UsersHomeAppDataLocalTemppip-build-kxm3249epyscreeze

Aatif Akhter's user avatar

Aatif Akhter

2,0661 gold badge23 silver badges46 bronze badges

asked Sep 17, 2016 at 9:03

Martin Led's user avatar

I encountered the same error message as you did. This workaround worked for me. Try these steps in order…

  1. Install PyScreeze 0.1.7.

  2. Update PyScreeze to 0.1.8.

  3. Install PyAutoGui.

I hope this helps.

answered Sep 19, 2016 at 0:50

Mike's user avatar

I also encountered the same error (albeit on Ubuntu 14.04). The missing module PIL is named Pillow (As said in this answer). So what I tried was (same in MacOS I think):

sudo pip3 install pillow

That translated to Windows would be:

pip.exe install pillow

Hope this helps you further.

Community's user avatar

answered Sep 19, 2016 at 13:41

Carolus's user avatar

CarolusCarolus

4774 silver badges16 bronze badges

Instead of letting PyautoGUI get all the packages for you.

Install all of them individually. Then, run the pip install --upgrade _packageName_

Then run pip install pyautogui.

Hope this helps.

answered Oct 18, 2016 at 15:59

Pragyaditya Das's user avatar

Pragyaditya DasPragyaditya Das

1,6385 gold badges25 silver badges44 bronze badges

I’m happy to report that this installation error has been fixed as of version 0.9.34. All you have to do is install or update PyAutoGUI from PyPI.

answered Mar 19, 2017 at 2:47

Al Sweigart's user avatar

Al SweigartAl Sweigart

11.4k10 gold badges63 silver badges92 bronze badges

try

pip uninstall pyautogui

then

pip install pyautogui

answered Jan 1, 2020 at 23:44

RandomSqueaker's user avatar

There is a possibility that on windows it is not rightly configured on windows path and therefore it cant find the module, to fix this try:

Control Panel System and Security System

then click: Environment Variables, and double click on path and append the directory you want to use.

full explanation on: https://helpdeskgeek.com/windows-10/add-windows-path-environment-variable/

you can also try:

Cmd:

python -m pip install < module >


git clone https://github.com/USERNAME/REPOSITORY

or

To append to PYTHONPATH:

IDE:

import sys

sys.path.append('< path >')

answered Oct 13, 2020 at 9:17

tinus's user avatar

tinustinus

1511 silver badge7 bronze badges

I’m trying to install Pyautogui on ubuntu 18.04, but I keep receiving the following error message:

$pip3 install pyautogui

Collecting pyautogui
  Using cached https://files.pythonhosted.org/packages/45/70/c5d340fadb06106135b7fe9677fc6d275f3cd7f7e6f896316c4cfe6c022c/PyAutoGUI-0.9.37.tar.gz
Collecting pymsgbox (from pyautogui)
  Using cached https://files.pythonhosted.org/packages/b6/65/86379ede1db26c40e7972d7a41c69cdf12cc6a0f143749aabf67ab8a41a1/PyMsgBox-1.0.6.zip
Collecting PyTweening>=1.0.1 (from pyautogui)
  Using cached https://files.pythonhosted.org/packages/b9/f8/c32a58d6e4dff8aa5c27e907194d69f3b57e525c2e4af96f39c6e9c854d2/PyTweening-1.0.3.zip
Collecting Pillow (from pyautogui)
  Using cached https://files.pythonhosted.org/packages/d1/24/f53ff6b61b3d728b90934bddb4f03f8ab584a7f49299bf3bde56e2952612/Pillow-5.2.0-cp36-cp36m-manylinux1_x86_64.whl
Collecting pyscreeze (from pyautogui)
  Using cached https://files.pythonhosted.org/packages/c9/6e/e175fda37d76d7846a6cda8a4364dfd7c2d343139b0716c4f03194d14933/PyScreeze-0.1.17.tar.gz
    Complete output from command python setup.py egg_info:
    Traceback (most recent call last):
      File "<string>", line 1, in <module>
      File "/tmp/pip-build-6aakksn1/pyscreeze/setup.py", line 10, in <module>
        with open("README.md", "r") as fh:
    FileNotFoundError: [Errno 2] No such file or directory: 'README.md'

    ----------------------------------------
Command "python setup.py egg_info" failed with error code 1 in /tmp/pip-build-6aakksn1/pyscreeze/

Can someone help me please?

@zhongxiali try:
pip install pygetwindow==0.0.1 and then try again install pyautogui

is working

Hi there,
Is still not working for me, still threw in error 1 as below, any idea?

ERROR: Command errored out with exit status 1:
command: ‘c:usersxinx**appdatalocalprogramspythonpython37-32python.exe’ -c ‘import sys, setuptools, tokenize; sys.argv[0] = ‘»‘»‘C:Usersxinx**AppDataLocalTemppip-install-hrwccc2qpyautoguisetup.py'»‘»‘; file='»‘»‘C:Usersxinx**AppDataLocalTemppip-install-hrwccc2qpyautoguisetup.py'»‘»‘;f=getattr(tokenize, ‘»‘»‘open'»‘»‘, open)(file);code=f.read().replace(‘»‘»‘rn'»‘»‘, ‘»‘»‘n'»‘»‘);f.close();exec(compile(code, file, ‘»‘»‘exec'»‘»‘))’ egg_info —egg-base ‘C:Usersxinx**AppDataLocalTemppip-install-hrwccc2qpyautoguipip-egg-info’
cwd: C:Usersxinx**AppDataLocalTemppip-install-hrwccc2qpyautogui
Complete output (3 lines):
c:usersxinxinappdatalocalprogramspythonpython37-32libdistutilsdist.py:274: UserWarning: Unknown distribution option: ‘long_description_content_type’
warnings.warn(msg)
error in PyAutoGUI setup command: ‘install_requires’ must be a string or list of strings containing valid project/version requirement specifiers; Expected version spec in pyobjc-core;platform_system==»Darwin» at ;platform_system==»Darwin»
—————————————-
ERROR: Command errored out with exit status 1: python setup.py egg_info Check the logs for full command output.

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!

  • Ошибка при установке postgresql на windows 10
  • Ошибка при установке pip colorama
  • Ошибка при установке pes 2013
  • Ошибка при установке pes 2012
  • Ошибка при установке overwolf