

Python 3.8.5 Code language: Bash ( bash ) Using a package managerĭepending on the distribution of Linux you are running, you can install Python with the default package manager: Yum, APT, etcetera. If your output looks similar to this, you’re in luck: $ python3 -version If you get a “command not found,” you need to install Python 3. You don’t want Python 2, but some OS’es still ship with it, unfortunately. Python 2.7.16 Code language: Bash ( bash ) It’s probably version 2.7: $ python -version If you enter python -version on the command line, you’ll see the version number. Many will include both Python 2 and Python 3. There are several ways to install Python on Linux, that is if you need to install it at all! Check what’s installed first Just like with Windows, you should make sure that Python is added to your system’s PATH. The downside to this approach is that you won’t get automatic updates. It’s easy and works like the installation of any other MacOS software program.

If you chose to install Homebrew, installing Python on MacOS is as easy as: $ brew install python Code language: Bash ( bash ) Official installerĪlternatively, you can download an installer from the Python download website. If that’s completely new to you, I recommend the next option for now: using the official installer. However, you do need to be comfortable with using a command-line shell to use Homebrew. It offers me the advantages that Windows has to offer (mainly great hardware support), while still enjoying Linux which is, in my opinion, the best platform for Python development. It’s what I use myself, and I’m truly loving it. If you’re familiar with Windows Subsystem For Linux, you may want to consider that option too. When you use this installer, make sure you mark the checkbox that says ‘Add Python to PATH’: Make sure you mark the checkbox ‘ Add Python to PATH‘ Inside WSL This method does not give you automatic updates, and I would recommend it only if you don’t have access to the Microsoft store. You can download a Python installer from the official Python download website too. open the Microsoft store and search for Python.This is the recommended way to install Python on Windows because it handles updates automatically and can be uninstalled easily too. Microsoft hosts a community release of Python 3 in the Microsoft Store. There are three methods you can choose from on Windows.
