-
Hello, to be honest... this is the first time I'm using python and I have an error that I can't solve, apparently it's simple but not for me. This is the error that appears to me, that it does not find the distutils, I already reinstalled python and vscode, I downloaded another vscode 2022 or something like that and nothing helps to solve this problem, |
Beta Was this translation helpful? Give feedback.
Replies: 2 comments
-
Run Alternatively, if you are facing issues with Python installation, then you can run it in Gitpod, a cloud-based browser IDE, as follows:
|
Beta Was this translation helpful? Give feedback.
-
Same as you, i've been struggle enough but then figuring out what was happened. This problem are related to the incompatibilty of joblib dependency with the newest version of python3.12 which deprecate and remove distutils from it's package manager system, in other words there is no disutils modules anymore. I found the simplest practical solution just with upgrading your joblib dependency with this script |
Beta Was this translation helpful? Give feedback.
Same as you, i've been struggle enough but then figuring out what was happened. This problem are related to the incompatibilty of joblib dependency with the newest version of python3.12 which deprecate and remove distutils from it's package manager system, in other words there is no disutils modules anymore.
I found the simplest practical solution just with upgrading your joblib dependency with this script
pip install --upgrade joblib
inside your terminal then runpython main.py