Меню

Ошибка при установке 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

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

4414 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,6184 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

10.7k10 gold badges62 silver badges88 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

1311 silver badge7 bronze badges

@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!

0 / 0 / 0

Регистрация: 29.05.2019

Сообщений: 5

1

21.06.2019, 16:58. Показов 12658. Ответов 5


Все установлено, но при импорте модуля выдает ошибку. С чем это может быть связано?
pip install pyautogui
Requirement already satisfied: pyautogui in c:python37libsite-packages (0.9.44)
Requirement already satisfied: pymsgbox in c:python37libsite-packages (from pyautogui) (1.0.7)
Requirement already satisfied: PyTweening>=1.0.1 in c:python37libsite-packages (from pyautogui) (1.0.3)
Requirement already satisfied: Pillow in c:python37libsite-packages (from pyautogui) (6.0.0)
Requirement already satisfied: pyscreeze>=0.1.21 in c:python37libsite-packages (from pyautogui) (0.1.21)
Requirement already satisfied: pygetwindow>=0.0.5 in c:python37libsite-packages (from pyautogui) (0.0.6)
Requirement already satisfied: pyrect in c:python37libsite-packages (from pygetwindow>=0.0.5->pyautogui) (0.1.4)

__________________
Помощь в написании контрольных, курсовых и дипломных работ, диссертаций здесь



0



31 / 24 / 8

Регистрация: 01.04.2017

Сообщений: 118

21.06.2019, 18:45

2

Если верить гугл переводчику, то «Requirement already satisfied»- переводится как,-«Требование уже выполнено»

Добавлено через 16 минут
может питон запускается не 3.7?



0



0 / 0 / 0

Регистрация: 29.05.2019

Сообщений: 5

21.06.2019, 19:03

 [ТС]

3

Спасибо!У меня было установлено 2 питона, проблему уже решил



0



Эксперт Python

5403 / 3827 / 1214

Регистрация: 28.10.2013

Сообщений: 9,554

Записей в блоге: 1

21.06.2019, 19:22

4

Цитата
Сообщение от Groulbands
Посмотреть сообщение

проблему уже решил

Просветите?



1



Groulbands

0 / 0 / 0

Регистрация: 29.05.2019

Сообщений: 5

21.06.2019, 23:13

 [ТС]

5

Забыл указать решение(WINDOWS 10):
Проверьте через какой путь запускается ваш скрипт вот так:

Python
1
2
import sys
print(sys.executable)

У меня было 2 python.exe в разных папках и модуль устанавливался в 1, а скрипт запускался через 2
Решение:
Удалите самостоятельно 2(или более) папки с python.exe(Если у вас в них имеются ваши скрипты переместите их в другую папку)
(Т.к я пытался удалить 1 из них через файл установки Python.Но мне выдавало ошибку т.к чего-то не было)
После запустите файл установки Python и нажмите Repair
После установки нового Python снова запускайте файл установки и жмите Uninstall
После удаления Python снова запускайте файл установки Жмите так Castomize(Вроде бы так,ОБЯЗАТЕЛЬНО поставьте галочку в поле Add Python(ваша версия) to PATH)
На 1 странице ничего не изменяйте ничего(Только если вы знаете зачем там что,и проверьте стоит ли галочка в поле для pip)
На 2 странице укажите путь для создания Python и устанавливайте Python
Не забудьте установить модули которые были у вас до этого.
Если после установки у вас не работает pip посмотрите эту статью-http://q a r u . s i t e/questions/46068/pip-is-not-recognized-as-an-internal-or-external-command (Не Реклама,вводите ссылку без пробелов,точку оставьте)
Надеюсь помог!



0



Эксперт Python

5403 / 3827 / 1214

Регистрация: 28.10.2013

Сообщений: 9,554

Записей в блоге: 1

22.06.2019, 00:31

6

На самом деле удалять другую версию Python не требуется (она может и пригодиться для тестирования). У меня на компе установлено 4 версии Python и все благополучно сосуществуют.
А чтобы запускать нужную версию интерпретатора достаточно в консоли использовать вместо команды python, команду py

Код

py -3.6 скрипт
py -2.7 скрипт
py -3.8 скрипт
и т.д.

В IDE же достаточно выбирать в конфигурац. настройках нужный вариант интерпретатора.
Для установки модулей через pip в каталог требуемой версии Python также можно использовать команду py:

Код

py -3.6 -m pip install модуль
py -3.7 -m pip install модуль
py -3.8 -m pip install модуль



0



Can anyone help me on this? When I try to install PyAutoGUI, I am getting the following error:

C:Python 34>pip.exe install pyautogui
Collecting pyautogui
  Retrying (Retry(total=4, connect=None, read=None, redirect=None)) after connection broken by 'ConnectTimeoutError(<pip._vendor.requests.packages.urllib3.connection.VerifiedHTTPSConnection object at 0x03BB69B0>, 'Connection to pypi.python.org timed out. (connect timeout=15)')': /simple/pyautogui/
  Retrying (Retry(total=3, connect=None, read=None, redirect=None)) after connection broken by 'ConnectTimeoutError(<pip._vendor.requests.packages.urllib3.connection.VerifiedHTTPSConnection object at 0x03BB6B70>, 'Connection to pypi.python.org timed out. (connect timeout=15)')': /simple/pyautogui/
  Retrying (Retry(total=2, connect=None, read=None, redirect=None)) after connection broken by 'ConnectTimeoutError(<pip._vendor.requests.packages.urllib3.connection.VerifiedHTTPSConnection object at 0x03BB6C30>, 'Connection to pypi.python.org timed out. (connect timeout=15)')': /simple/pyautogui/
  Retrying (Retry(total=1, connect=None, read=None, redirect=None)) after connection broken by 'ConnectTimeoutError(<pip._vendor.requests.packages.urllib3.connection.VerifiedHTTPSConnection object at 0x03BB6CF0>, 'Connection to pypi.python.org timed out. (connect timeout=15)')': /simple/pyautogui/
  Retrying (Retry(total=0, connect=None, read=None, redirect=None)) after connection broken by 'ConnectTimeoutError(<pip._vendor.requests.packages.urllib3.connection.VerifiedHTTPSConnection object at 0x03BB6DB0>, 'Connection to pypi.python.org timed out. (connect timeout=15)')': /simple/pyautogui/
  Retrying (Retry(total=4, connect=None, read=None, redirect=None)) after connection broken by 'ConnectTimeoutError(<pip._vendor.requests.packages.urllib3.connection.VerifiedHTTPSConnection object at 0x03BB6E50>, 'Connection to pypi.python.org timed out. (connect timeout=15)')': /simple/pyautogui/
  Retrying (Retry(total=3, connect=None, read=None, redirect=None)) after connection broken by 'ConnectTimeoutError(<pip._vendor.requests.packages.urllib3.connection.VerifiedHTTPSConnection object at 0x03BD3130>, 'Connection to pypi.python.org timed out. (connect timeout=15)')': /simple/pyautogui/
  Retrying (Retry(total=2, connect=None, read=None, redirect=None)) after connection broken by 'ConnectTimeoutError(<pip._vendor.requests.packages.urllib3.connection.VerifiedHTTPSConnection object at 0x03BD31F0>, 'Connection to pypi.python.org timed out. (connect timeout=15)')': /simple/pyautogui/
  Retrying (Retry(total=1, connect=None, read=None, redirect=None)) after connection broken by 'ConnectTimeoutError(<pip._vendor.requests.packages.urllib3.connection.VerifiedHTTPSConnection object at 0x03BD32B0>, 'Connection to pypi.python.org timed out. (connect timeout=15)')': /simple/pyautogui/
  Retrying (Retry(total=0, connect=None, read=None, redirect=None)) after connection broken by 'ConnectTimeoutError(<pip._vendor.requests.packages.urllib3.connection.VerifiedHTTPSConnection object at 0x03BD3370>, 'Connection to pypi.python.org timed out. (connect timeout=15)')': /simple/pyautogui/
  Could not find a version that satisfies the requirement pyautogui (from versions: )
No matching distribution found for pyautogui

Much appreciated. Thank You!

Can anyone help me on this? When I try to install PyAutoGUI, I am getting the following error:

C:Python 34>pip.exe install pyautogui
Collecting pyautogui
  Retrying (Retry(total=4, connect=None, read=None, redirect=None)) after connection broken by 'ConnectTimeoutError(<pip._vendor.requests.packages.urllib3.connection.VerifiedHTTPSConnection object at 0x03BB69B0>, 'Connection to pypi.python.org timed out. (connect timeout=15)')': /simple/pyautogui/
  Retrying (Retry(total=3, connect=None, read=None, redirect=None)) after connection broken by 'ConnectTimeoutError(<pip._vendor.requests.packages.urllib3.connection.VerifiedHTTPSConnection object at 0x03BB6B70>, 'Connection to pypi.python.org timed out. (connect timeout=15)')': /simple/pyautogui/
  Retrying (Retry(total=2, connect=None, read=None, redirect=None)) after connection broken by 'ConnectTimeoutError(<pip._vendor.requests.packages.urllib3.connection.VerifiedHTTPSConnection object at 0x03BB6C30>, 'Connection to pypi.python.org timed out. (connect timeout=15)')': /simple/pyautogui/
  Retrying (Retry(total=1, connect=None, read=None, redirect=None)) after connection broken by 'ConnectTimeoutError(<pip._vendor.requests.packages.urllib3.connection.VerifiedHTTPSConnection object at 0x03BB6CF0>, 'Connection to pypi.python.org timed out. (connect timeout=15)')': /simple/pyautogui/
  Retrying (Retry(total=0, connect=None, read=None, redirect=None)) after connection broken by 'ConnectTimeoutError(<pip._vendor.requests.packages.urllib3.connection.VerifiedHTTPSConnection object at 0x03BB6DB0>, 'Connection to pypi.python.org timed out. (connect timeout=15)')': /simple/pyautogui/
  Retrying (Retry(total=4, connect=None, read=None, redirect=None)) after connection broken by 'ConnectTimeoutError(<pip._vendor.requests.packages.urllib3.connection.VerifiedHTTPSConnection object at 0x03BB6E50>, 'Connection to pypi.python.org timed out. (connect timeout=15)')': /simple/pyautogui/
  Retrying (Retry(total=3, connect=None, read=None, redirect=None)) after connection broken by 'ConnectTimeoutError(<pip._vendor.requests.packages.urllib3.connection.VerifiedHTTPSConnection object at 0x03BD3130>, 'Connection to pypi.python.org timed out. (connect timeout=15)')': /simple/pyautogui/
  Retrying (Retry(total=2, connect=None, read=None, redirect=None)) after connection broken by 'ConnectTimeoutError(<pip._vendor.requests.packages.urllib3.connection.VerifiedHTTPSConnection object at 0x03BD31F0>, 'Connection to pypi.python.org timed out. (connect timeout=15)')': /simple/pyautogui/
  Retrying (Retry(total=1, connect=None, read=None, redirect=None)) after connection broken by 'ConnectTimeoutError(<pip._vendor.requests.packages.urllib3.connection.VerifiedHTTPSConnection object at 0x03BD32B0>, 'Connection to pypi.python.org timed out. (connect timeout=15)')': /simple/pyautogui/
  Retrying (Retry(total=0, connect=None, read=None, redirect=None)) after connection broken by 'ConnectTimeoutError(<pip._vendor.requests.packages.urllib3.connection.VerifiedHTTPSConnection object at 0x03BD3370>, 'Connection to pypi.python.org timed out. (connect timeout=15)')': /simple/pyautogui/
  Could not find a version that satisfies the requirement pyautogui (from versions: )
No matching distribution found for pyautogui

Much appreciated. Thank You!

Уведомления

  • Начало
  • » Python для новичков
  • » Установка библиотеки PyAutoGui

#1 Июль 22, 2020 21:11:51

Установка библиотеки PyAutoGui

Столкнулся с ошибкой при установке PyAutoGui:

 D:code>pip install pyautogui
Collecting pyautogui
  Using cached PyAutoGUI-0.9.50.tar.gz (57 kB)
Collecting pymsgbox
  Using cached PyMsgBox-1.0.8.tar.gz (18 kB)
  Installing build dependencies ... done
  Getting requirements to build wheel ... done
    Preparing wheel metadata ... error
    ERROR: Command errored out with exit status 1:
     command: 'd:pythonpython.exe' 'd:pythonlibsite-packagespip_vendorpep517_in_process.py' prepare_metadata_for_build_wheel 'C:Users3C08~1AppDataLocalTemptmpqj8l_g0s'
         cwd: C:UsersКОТAppDataLocalTemppip-install-dtcs3t19pymsgbox
    Complete output (14 lines):
    running dist_info
    creating C:UsersКОТAppDataLocalTemppip-modern-metadata-pn_2y9qqPyMsgBox.egg-info
    writing C:UsersКОТAppDataLocalTemppip-modern-metadata-pn_2y9qqPyMsgBox.egg-infoPKG-INFO
    writing dependency_links to C:UsersКОТAppDataLocalTemppip-modern-metadata-pn_2y9qqPyMsgBox.egg-infodependency_links.txt
    writing top-level names to C:UsersКОТAppDataLocalTemppip-modern-metadata-pn_2y9qqPyMsgBox.egg-infotop_level.txt
    writing manifest file 'C:UsersКОТAppDataLocalTemppip-modern-metadata-pn_2y9qqPyMsgBox.egg-infoSOURCES.txt'
    reading manifest file 'C:UsersКОТAppDataLocalTemppip-modern-metadata-pn_2y9qqPyMsgBox.egg-infoSOURCES.txt'
    reading manifest template 'MANIFEST.in'
    Error in sitecustomize; set PYTHONVERBOSE for traceback:
    SyntaxError: (unicode error) 'utf-8' codec can't decode byte 0xca in position 0: invalid continuation byte (sitecustomize.py, line 21)
    warning: no files found matching '*.py' under directory 'pymsgbox'
    writing manifest file 'C:UsersКОТAppDataLocalTemppip-modern-metadata-pn_2y9qqPyMsgBox.egg-infoSOURCES.txt'
    creating 'C:UsersКОТAppDataLocalTemppip-modern-metadata-pn_2y9qqPyMsgBox.dist-info'
    error: invalid command 'bdist_wheel'
    ----------------------------------------
ERROR: Command errored out with exit status 1: 'd:pythonpython.exe' 'd:pythonlibsite-packagespip_vendorpep517_in_process.py' prepare_metadata_for_build_wheel 'C:Users3C08~1AppDataLocalTemptmpqj8l_g0s' Check the logs for
full command output.

Офлайн

  • Пожаловаться

#2 Июль 22, 2020 22:20:20

Установка библиотеки PyAutoGui

Вопрос исчерпан, необходимо было установить whell:

Офлайн

  • Пожаловаться

#3 Июль 23, 2020 00:29:08

Установка библиотеки PyAutoGui

serafser
необходимо было установить whell

Видимо, wheel.

Офлайн

  • Пожаловаться

  • Начало
  • » Python для новичков
  • » Установка библиотеки PyAutoGui

I’ve been trying to look for a solution online for hours with no avail.

I have this piece of code:

#load packages
import pyautogui    #these are for our clicks and keystrokes!
import time         #required to call any time commands (i.e delay)

#STEP ONE --> Get Cursor Location
time.sleep(2)
prin

t(pyautogui.position())

But everytime I try to run this script I get the following error:

/usr/bin/python3.9 "/home/silo/Documents/Python Projects/macro 1.py"
Traceback (most recent call last):
  File "/home/silo/Documents/Python Projects/macro 1.py", line 2, in <module>
    import pyautogui    #these are for our clicks and keystrokes!
ModuleNotFoundError: No module named 'pyautogui'

Process finished with exit code 1

This is what happens when I try to install any package in settings:
1

I am currently using:

  1. Elementary OS 5.1.7 Hera
  2. Ubuntu 18.04.4 LTS
  3. Python 3.9.5
  4. Pip 9.0.1 (I have already upgraded pip to latest version via terminal, though I think this is still for Python 3.6)

I’ve tried (but to no success):

  • Installing pyautogui, pillow, plotly, matplotlib
  • Changing pyCharm’s Python interpreter to /usr/bin/python3.9 (strangely, pyCharm names this path Python 3.6)
  • Removed all instances of Python 2.7
  • alias = 'Python 3.9'
  • export PATH="$PATH:/path/to/dir"
  • Installed everything with: $ python3 -m pip <...>

Posts: 10

Threads: 2

Joined: Dec 2018

Reputation:
0

Jan-02-2019, 02:12 AM
(This post was last modified: Jan-02-2019, 02:13 AM by HowardHarkness.)

import time
import random
import pyautogui # This causes import error!
from selenium import webdriver

This has got to be some rookie error, but when I try to import pyautogui, I get the following:
import pyautogui
Traceback (most recent call last):
File «<input>», line 1, in <module>
File «C:Program FilesJetBrainsPyCharm Community Edition 2018.3.1helperspydev_pydev_bundlepydev_import_hook.py», line 21, in do_import
module = self._system_import(name, *args, **kwargs)
ModuleNotFoundError: No module named ‘pyautogui’

I get the same problem with pywinauto.

I am running Windoze 10
sys.version_info
sys.version_info(major=3, minor=7, micro=1, releaselevel=’final’, serial=0)
IDE is pycharm

pyautogui is already installed, according to this:
C:>pip3 install pyautogui
Requirement already satisfied: pyautogui in c:usershowardappdatalocalprogramspythonpython37-32libsite-packages (0.9.39)
Requirement already satisfied: pymsgbox in c:usershowardappdatalocalprogramspythonpython37-32libsite-packages (from pyautogui) (1.0.6)
Requirement already satisfied: PyTweening>=1.0.1 in c:usershowardappdatalocalprogramspythonpython37-32libsite-packages (from pyautogui) (1.0.3)
Requirement already satisfied: Pillow in c:usershowardappdatalocalprogramspythonpython37-32libsite-packages (from pyautogui) (5.4.0)
Requirement already satisfied: pyscreeze in c:usershowardappdatalocalprogramspythonpython37-32libsite-packages (from pyautogui) (0.1.18)

Python in in my path. I don’t have any problem with importing time, sys, or other modules.

Please tell me what I am doing wrong…

Posts: 11,550

Threads: 445

Joined: Sep 2016

Reputation:
444

you need to install the package, from command line:

pip install pyautogui

Posts: 10

Threads: 2

Joined: Dec 2018

Reputation:
0

Per the original post, I already did that.

I tried both pip and pip3, I’m assuming they both do the same thing. This is from the command line:

C:>pip install pyautogui
Requirement already satisfied: pyautogui in c:usershowardappdatalocalprogramspythonpython37-32libsite-packages (0.9.39)
Requirement already satisfied: pymsgbox in c:usershowardappdatalocalprogramspythonpython37-32libsite-packages (from pyautogui) (1.0.6)
Requirement already satisfied: PyTweening>=1.0.1 in c:usershowardappdatalocalprogramspythonpython37-32libsite-packages (from pyautogui) (1.0.3)
Requirement already satisfied: Pillow in c:usershowardappdatalocalprogramspythonpython37-32libsite-packages (from pyautogui) (5.4.0)
Requirement already satisfied: pyscreeze in c:usershowardappdatalocalprogramspythonpython37-32libsite-packages (from pyautogui) (0.1.18)

Posts: 101

Threads: 7

Joined: Aug 2017

Reputation:
5

(Jan-02-2019, 02:12 AM)HowardHarkness Wrote: IDE is pycharm

You might have multiple Python installations.

The one in your path seems to be

Quote:c:usershowardappdatalocalprogramspythonpython37-32

Also, make sure you are using the same interpreter in PyCharm:

Quote:settings (ctrl+alt+s) -> Project -> Project Interpreter

Posts: 6,564

Threads: 116

Joined: Sep 2016

Reputation:
487

Jan-02-2019, 01:58 PM
(This post was last modified: Jan-02-2019, 01:58 PM by snippsat.)

As mention bye @hbknjr check interpreter in PyCharm

Here some basic test from command line.

C:
λ python -c "import sys; print(sys.executable)"
C:python37python.exe

C:
λ pip -V
pip 18.1 from c:python37libsite-packagespip (python 3.7)

C:
λ python
Python 3.7.0 (v3.7.0:1bf9cc5093, Jun 27 2018, 04:06:47) [MSC v.1914 32 bit (Intel)] on win32
Type "help", "copyright", "credits" or "license" for more information.
>>> import pyautogui
>>>
>>> pyautogui.__version__
'0.9.39'
>>> exit()

Now can test in PyCharm with:

import sys
import pyautogui

print(sys.executable)
print('hello world')
print(pyautogui.__version__)

Output:

C:Python37python.exe hello world 0.9.39

As you see same Python interpreter(C:Python37python.exe) in command line and in script is used,then it will work.

Posts: 10

Threads: 2

Joined: Dec 2018

Reputation:
0

Thank you!

There were indeed two different pythons installed — even though both were the same version. Took me a while to figure out how to change the setting in PyCharm, but once I did, the import statements worked.

0 0 голоса
Рейтинг статьи
Подписаться
Уведомить о
guest

0 комментариев
Старые
Новые Популярные
Межтекстовые Отзывы
Посмотреть все комментарии

А вот еще интересные материалы:

  • Яшка сломя голову остановился исправьте ошибки
  • Ясность цели позволяет целеустремленно добиваться намеченного исправьте ошибки
  • Ясность цели позволяет целеустремленно добиваться намеченного где ошибка
  • Ошибка при установке powershell
  • Ошибка при установке postgresql на windows 10