You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
All pip related activities won't work. getting OSError: [Errno 9] Bad file descriptor...
The error seems to come from an import. from http.cookies import Morsel
Output
C:\Users\SAM>pip list
Traceback (most recent call last):
File "c:\users\sam\appdata\local\programs\python\python37\lib\runpy.py", line 193, in _run_module_as_main
"__main__", mod_spec)
File "c:\users\sam\appdata\local\programs\python\python37\lib\runpy.py", line 85, in _run_code
exec(code, run_globals)
File "C:\Users\SAM\AppData\Local\Programs\Python\Python37\Scripts\pip.exe\__main__.py", line 5, in <module>
File "c:\users\sam\appdata\local\programs\python\python37\lib\site-packages\pip\_internal\__init__.py", line 40, in <module>
from pip._internal.cli.autocompletion import autocomplete
File "c:\users\sam\appdata\local\programs\python\python37\lib\site-packages\pip\_internal\cli\autocompletion.py", line 8, in <module>
from pip._internal.cli.main_parser import create_main_parser
File "c:\users\sam\appdata\local\programs\python\python37\lib\site-packages\pip\_internal\cli\main_parser.py", line 12, in <module>
from pip._internal.commands import (
File "c:\users\sam\appdata\local\programs\python\python37\lib\site-packages\pip\_internal\commands\__init__.py", line 6, in <module>
from pip._internal.commands.completion import CompletionCommand
File "c:\users\sam\appdata\local\programs\python\python37\lib\site-packages\pip\_internal\commands\completion.py", line 6, in <module>
from pip._internal.cli.base_command import Command
File "c:\users\sam\appdata\local\programs\python\python37\lib\site-packages\pip\_internal\cli\base_command.py", line 18, in <module>
from pip._internal.download import PipSession
File "c:\users\sam\appdata\local\programs\python\python37\lib\site-packages\pip\_internal\download.py", line 15, in <module>
from pip._vendor import requests, six, urllib3
File "c:\users\sam\appdata\local\programs\python\python37\lib\site-packages\pip\_vendor\requests\__init__.py", line 114, in <module>
from . import utils
File "c:\users\sam\appdata\local\programs\python\python37\lib\site-packages\pip\_vendor\requests\utils.py", line 26, in <module>
from ._internal_utils import to_native_string
File "c:\users\sam\appdata\local\programs\python\python37\lib\site-packages\pip\_vendor\requests\_internal_utils.py", line 11, in <module>
from .compat import is_py2, builtin_str, str
File "c:\users\sam\appdata\local\programs\python\python37\lib\site-packages\pip\_vendor\requests\compat.py", line 65, in <module>
from http.cookies import Morsel
File "<frozen importlib._bootstrap>", line 983, in _find_and_load
File "<frozen importlib._bootstrap>", line 967, in _find_and_load_unlocked
File "<frozen importlib._bootstrap>", line 677, in _load_unlocked
File "<frozen importlib._bootstrap_external>", line 724, in exec_module
File "<frozen importlib._bootstrap_external>", line 859, in get_code
File "<frozen importlib._bootstrap_external>", line 917, in get_data
OSError: [Errno 9] Bad file descriptor
The text was updated successfully, but these errors were encountered:
Do you get the same error if you run python -c "from http.cookies import Morsel"?
Does this happen every time you run pip or the above command?
If so, and if you can get admin privileges on the computer in question, then you may be able to run procmon while running the command above and get details about what file it is failing to access.
windows 10
All pip related activities won't work. getting OSError: [Errno 9] Bad file descriptor...
The error seems to come from an import.
from http.cookies import Morsel
Output
The text was updated successfully, but these errors were encountered: