I use Windows 11 and Python 3.12.5 64-bit, installed from
https://www.python.org/downloads/
/>
I'm trying to install requirements from some repo, but this fails:
PS C:\Data\Repos\myrepo> pip install -r .\requirements.txt
Traceback (most recent call last):
File "", line 198, in _run_module_as_main
File "", line 88, in _run_code
File "C:\Users\jonathanb\AppData\Local\Programs\Python\Python312\Scripts\pip.exe\__main__.py", line 4, in
File "C:\Users\jonathanb\AppData\Local\Programs\Python\Python312\Lib\site-packages\pip\_internal\cli\main.py", line 10, in
from pip._internal.cli.autocompletion import autocomplete
File "C:\Users\jonathanb\AppData\Local\Programs\Python\Python312\Lib\site-packages\pip\_internal\cli\autocompletion.py", line 9, in
from pip._internal.cli.main_parser import create_main_parser
File "C:\Users\jonathanb\AppData\Local\Programs\Python\Python312\Lib\site-packages\pip\_internal\cli\main_parser.py", line 7, in
from pip._internal.cli import cmdoptions
File "C:\Users\jonathanb\AppData\Local\Programs\Python\Python312\Lib\site-packages\pip\_internal\cli\cmdoptions.py", line 18, in
from distutils.util import strtobool
ModuleNotFoundError: No module named 'distutils'
From several questions on this site (best one) I understand distutils was removed in Python 3.12, and if I want to use them I should run pip install setuptools. I tried that, and it failed the same way.
So question: How can I use pip to restore requirements?
pip install itself fails with "No module named 'distutils'"
Programing Coderfunda
September 10, 2024
No comments
Related Posts:
How to get the cell's output data from a azure databricks notebook to a fileUnable to get a single cell's output to a file in Azure databricks notebook Tried many ways but unable to get the result. Can someone help me on t… Read More
How to pass multiple values as sql array for a parameter? (Or how can I cirumvent limit of parameters of prepared statement?)I'm trying to create a query using QueryDSL wich accepts more than 32767 parameters (32767 is the upper limit of parameters the postgresql driver acce… Read More
Getting an image from the database using path images on the client sideI used multer to download the image and save the path of the image to the database, and then how can I get the image from the client and show it on th… Read More
npm install MaxListenersExceededWarningDuring npm install I get several of the following warning message: (node:5156) MaxListenersExceededWarning: Possible EventEmitter memory leak detect… Read More
Atomic locks in Laravel (demo & tutorial)submitted by /u/aarondf [link] [comments]… Read More
0 comments:
Post a Comment
Thanks