Python is an easy-to-learn, introductory programming language.

To update or switch versions, run pyenv install -v 3 (or 3.10, etc).

Files

These are the files / directories that are created and/or modified with this install:

~/.config/envman/PATH.env
~/.pyenv/bin/
~/.pyenv/shims/

# pyenv also loads shell hooks via
~/.bashrc
~/.config/fish/config.fish
~/.zshrc

How to Install python3 on macOS

Install Xcode tools first:

xcode-select --install

How to Install python3 on Linux

Make sure that you already have the necessary build tools installed:

# required
sudo apt update
sudo apt install -y build-essential zlib1g-dev libssl-dev

# recommended
sudo apt install -y libreadline-dev libsqlite3-dev \
                    libffi-dev libbz2-dev liblzma-dev

Cheat Sheet

Python is a introductory programming language that focuses on Software Engineering principles - as laid out in The Zen of Python (above).

Note: pyenv (used here) is the only way you should ever install Python, otherwise you risk messing up your system version of python, and existing python projects.

How to reset to the system python?

pyenv installs a conflict-free version of python that will not interfere with system utilities (which is why we love it so much).

However, in the rare event that you need to switch your user profile's python back to the system version, you can do so:

pyenv global system

How to use a specific version of python in a project?

Go into the root of your project repository and run this, for example:

pyenv local -v 3.10.0

Change 3.10.0 to the version you want for that project, of course. 😁

Where to learn Python?

Learn Python 3 The Hard Way is probably the best beginner resource.

What to learn after Python?

Python's a great language for learning to program and it still has a lot of practical uses, but it's a product of its time and not as well-suited for modern web development as more modern languages that were designed to handle the types of problems that exist for programmers in today's world.

What are the best alternatives?

  • Go is a better choice for systems programming and web development, and "is a language you can learn in a weekend".
  • Rust is a better choice for games and machine learning, but may be more difficult to master.
  • Node is a better choice for web programming and programmer tooling.

That all said, it's probably still worth it to learn Python first - it has much better learning resources than Node, and the learning resources for Go and Rust typically assume you've had experience with one of the languages they replace... such as Python.

Once you learn how to program, you can easily apply that to any language.

90%+ of programming is programming. Maybe 10% is the language you choose.

Contribute

Report an Issue Submit Installer Star on GitHub