ERROR: Command errored out with exit status 1
See original GitHub issue- Windows 10.
- pip 20.1.1
- Python 3.8.2
Hello. I have been trying to install some packages like pyautogui, pyinstaller, pygame but I have the same error. I have uploaded many packages before and now I couldn’t find the solution. Could you please help me figure out ? pip install pyautogui
ERROR: Command errored out with exit status 1:
command: 'c:\python\python.exe' 'c:\python\lib\site-packages\pip' install --ignore-installed --no-user --prefix 'C:\Users\Recep\AppData\Local\Temp\pip-build-env-l5ikgkv0\overlay' --no-warn-script-location --no-binary :none: --only-binary :none: -i https://pypi.org/simple -- 'setuptools>=40.8.0' wheel
cwd: None
Complete output (44 lines):
Traceback (most recent call last):
File "c:\python\lib\runpy.py", line 193, in _run_module_as_main
return _run_code(code, main_globals, None,
File "c:\python\lib\runpy.py", line 86, in _run_code
exec(code, run_globals)
File "c:\python\lib\site-packages\pip\__main__.py", line 26, in <module>
sys.exit(_main())
File "c:\python\lib\site-packages\pip\_internal\cli\main.py", line 73, in main
command = create_command(cmd_name, isolated=("--isolated" in cmd_args))
File "c:\python\lib\site-packages\pip\_internal\commands\__init__.py", line 104, in create_command
module = importlib.import_module(module_path)
File "c:\python\lib\importlib\__init__.py", line 127, in import_module
return _bootstrap._gcd_import(name[level:], package, level)
File "<frozen importlib._bootstrap>", line 1014, in _gcd_import
File "<frozen importlib._bootstrap>", line 991, in _find_and_load
File "<frozen importlib._bootstrap>", line 975, in _find_and_load_unlocked
File "<frozen importlib._bootstrap>", line 671, in _load_unlocked
File "<frozen importlib._bootstrap_external>", line 783, in exec_module
File "<frozen importlib._bootstrap>", line 219, in _call_with_frames_removed
File "c:\python\lib\site-packages\pip\_internal\commands\install.py", line 24, in <module>
from pip._internal.cli.req_command import RequirementCommand, with_cleanup
File "c:\python\lib\site-packages\pip\_internal\cli\req_command.py", line 16, in <module>
from pip._internal.index.package_finder import PackageFinder
File "c:\python\lib\site-packages\pip\_internal\index\package_finder.py", line 21, in <module>
from pip._internal.index.collector import parse_links
File "c:\python\lib\site-packages\pip\_internal\index\collector.py", line 14, in <module>
from pip._vendor import html5lib, requests
File "c:\python\lib\site-packages\pip\_vendor\requests\__init__.py", line 114, in <module>
from . import utils
File "c:\python\lib\site-packages\pip\_vendor\requests\utils.py", line 25, in <module>
from . import certs
File "c:\python\lib\site-packages\pip\_vendor\requests\certs.py", line 15, in <module>
from pip._vendor.certifi import where
File "c:\python\lib\site-packages\pip\_vendor\certifi\__init__.py", line 1, in <module>
from .core import contents, where
File "c:\python\lib\site-packages\pip\_vendor\certifi\core.py", line 12, in <module>
from importlib.resources import read_text
File "c:\python\lib\importlib\resources.py", line 11, in <module>
from typing import Iterable, Iterator, Optional, Set, Union # noqa: F401
File "c:\python\lib\site-packages\typing.py", line 1359, in <module>
class Callable(extra=collections_abc.Callable, metaclass=CallableMeta):
File "c:\python\lib\site-packages\typing.py", line 1007, in __new__
self._abc_registry = extra._abc_registry
AttributeError: type object 'Callable' has no attribute '_abc_registry'
----------------------------------------
ERROR: Command errored out with exit status 1: 'c:\python\python.exe' 'c:\python\lib\site-packages\pip' install --ignore-installed --no-user --prefix 'C:\Users\Recep\AppData\Local\Temp\pip-build-env-l5ikgkv0\overlay' --no-warn-script-location --no-binary :none: --only-binary :none: -i https://pypi.org/simple -- 'setuptools>=40.8.0' wheel Check the logs for full command output.
Issue Analytics
- State:
- Created 3 years ago
- Comments:29 (2 by maintainers)
Top Results From Across the Web
Command errored out with exit status 1: python." when trying ...
I am trying to install django-heroku using pip, but it keeps running into an error. I have seen suggestions telling me to make...
Read more >How to fix error ERROR Command errored out with exit status ...
ERROR : Command errored out with exit status 1: command: /Users/user/Dev/trydjango/new_env/bin/python -c 'import sys, setuptools, tokenize; sys.
Read more >Command errored out with exit status 1 : r/learnpython - Reddit
ERROR: Command errored out with exit status 1: python setup.py egg_info Check the logs for full command output. ... You're missing a file....
Read more >Command errored out with exit status 1 - YouTube
This video how fix Building wheel for Pillow (setup.py) ... error or ERROR : Command errored out with exit status 1 :Solution :...
Read more >Command errored out with exit status 1: python setup.py ...
To solve the ERROR: Command errored out with exit status 1: python setup.py egg_info, upgrade your versions of `pip`, `setuptools` and ...
Read more >
Top Related Medium Post
No results found
Top Related StackOverflow Question
No results found
Troubleshoot Live Code
Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start Free
Top Related Reddit Thread
No results found
Top Related Hackernoon Post
No results found
Top Related Tweet
No results found
Top Related Dev.to Post
No results found
Top Related Hashnode Post
No results found
I had the same problem with installing Pygame on Windows with Python 3.9. The solution was to install an older version of python (with an older version of pip), where I know it would work.
py -3.8 -m pip install pygame
With
py -3.8
you choose the version you want to use.Try this:
Rollback pip to an older version: python -m pip install pip==18.1
Install desired module: pip install pyautogui
Update pip: python -m pip install --upgrade pip