Python problem

techbeastzz

BANNED
Joined
Jun 11, 2023
Messages
259
Reaction score
101
So i got this quora automation bot, I run this in my vps, but it shows error like this
 

Attachments

  • Screenshot_20231219-111953-185.png
    Screenshot_20231219-111953-185.png
    484.2 KB · Views: 115
pip install distutils

you do not have that module
 
Hmm isn't distutils usually installed along with Python? I'd try re installing python.. sometimes you see on Linux that they are installed separately but the pip module has a different name..
 
Hmm isn't distutils usually installed along with Python? I'd try re installing python.. sometimes you see on Linux that they are installed separately but the pip module has a different name..
No i am running this on vps window, so what will be the problem, i even try new version of python but still nothing works
 
Hmm isn't distutils usually installed along with Python? I'd try re installing python.. sometimes you see on Linux that they are installed separately but the pip module has a different name..
I sell this bot to different people it run on there pc but it is not running on my own vps.
 
This looks like a setup problem, without server details it's going to be hard for any of us to diagnose the problem.
 
you should use pycharm, it's free, and you can easily manage the installation of libraries
 
Sorry guys i solved the problem
You should state how did you solve the problem as it might be helpful for anyone in the future :)
I believe installing distutils by including the python used version in the cmd was the right approach, no?
Code:
sudo apt-get install python<your-python-version>-distutils
 
You should state how did you solve the problem as it might be helpful for anyone in the future :)
I believe installing distutils by including the python used version in the cmd was the right approach, no?
Code:
sudo apt-get install python<your-python-version>-distutils
I uninstalled python and install python 3.11.4 version that's it.
 
Back
Top