Best Python Version For Automation

samkalt

Regular Member
Joined
Jan 3, 2024
Messages
279
Reaction score
61
Can anyone tell me best python version for automation right now. i have 3.11.4, but right now I am building some social media bots and whenever I run them it says this version is not capable or this python version not matched, i even download new version but even after that it got another more problems.
 
Last edited:
Can anyone tell me best python version for automation right now. i have 3.11.4, but right now I am building some social media bots and whenever I run them it says this version is not capable or this python version not matched, i even download new version but even after that it got another more problems.
Well if you look on YouTube you can find many videos
 
Nahh, then why do I ask here?
 
It's not about your python version.
If the bot you're coding depends on specific libraries, simply update your requirements.txt to match the libraries you're using with your python version.
 
I worked recently with 3.12 and it’s work fine
 
It's not about your python version.
If the bot you're coding depends on specific libraries, simply update your requirements.txt to match the libraries you're using with your python version.
you could probably get away with just deleting the =={version} on each line in requirements.txt and pip reinstalling. I seldom run into dependency conflicts
 
Can anyone tell me best python version for automation right now. i have 3.11.4, but right now I am building some social media bots and whenever I run them it says this version is not capable or this python version not matched, i even download new version but even after that it got another more problems.
Possibly you're using an outadated python package, I suggest updating your packages not downgrading your python version.
 
Just make sure your version matches the requirements in the libraries used.
 
depends on module used, some automation module needed older version of python, which library you using on your screen
 
Back
Top