Python Forum
How should I upgrade python to 3.8.0?
Thread Rating:
  • 0 Vote(s) - 0 Average
  • 1
  • 2
  • 3
  • 4
  • 5
How should I upgrade python to 3.8.0?
#2
Just because a newer version of python comes out does not mean they abandon older releases. This is because some places cannot change their python version and thus require security fixes. This is why you do not just look at the latest date, but the version number

the version number means:
MAJOR.MINOR.BUGFIX

Major versions changes very seldomly. Just as it implies it is a major change in syntax and features, etc.
Minor versions are new features and enhancements.
Bugfix versions fix bug and security issues; and can go on for a long time. For example, python2.7.X i still being released (only up to 2020) even while python3.x is being released.

You cannot upgrade python with pip. pip handles python 3rd party libraries, not python itself. You need to install a new version of python and move/copy your programs over to the new version. Then install any 3rd party libs again with that pip. Often people will not bother unless there is a new feature they want. I have been using python3.6.1 since it came out. But because i want to use the walrus operator, i might eventually start using the latest python version.
Recommended Tutorials:
Reply


Messages In This Thread
RE: How should I upgrade python to 3.8.0? - by metulburr - Oct-20-2019, 11:11 AM

Possibly Related Threads…
Thread Author Replies Views Last Post
  Upgrade to python 3 opinion hokie1999 5 2,870 May-11-2021, 06:42 PM
Last Post: hokie1999
  Need help to upgrade Python 3.X Ritesh 3 3,792 Feb-18-2020, 04:06 AM
Last Post: Ritesh
  Any command to upgrade Python version 2.X to latest KarthiK 7 4,198 Feb-15-2020, 07:25 PM
Last Post: DeaD_EyE

Forum Jump:

User Panel Messages

Announcements
Announcement #1 8/1/2020
Announcement #2 8/2/2020
Announcement #3 8/6/2020