Differences between revisions 1 and 2
Revision 1 as of 2019-12-07 13:06:48
Size: 574
Comment: Initial commit
Revision 2 as of 2019-12-07 13:37:19
Size: 840
Comment:
Deletions are marked like this. Additions are marked like this.
Line 6: Line 6:
sudo pacman -Syyu python pip sudo pacman -Syyu python python-pip python-setuptools
# or, sudo pacman -Syyu python2 python2-pip python2-setuptools
Line 8: Line 9:

Older versions are available on the AUR as `python37`, `python36`, `python26`, etc.
Line 15: Line 18:
# or, sudo apt install python python-virtualenv python-venv python-setuptools python-pip

System Installation

Arch

sudo pacman -Syyu python python-pip python-setuptools
# or, sudo pacman -Syyu python2 python2-pip python2-setuptools

Older versions are available on the AUR as python37, python36, python26, etc.

Debian

sudo apt install python3 python3-virtualenv python3-venv python3-setuptools python3-pip
# or, sudo apt install python python-virtualenv python-venv python-setuptools python-pip

Debian patches out the ensurepip module to enforce apt package control.

Ubuntu

A default version of Python should work out-of-the-box. For alternate versions, use the deadsnakes PPA:

sudo add-apt-repository ppa:deadsnakes/ppa
sudo apt-get update
sudo apt install python#.# 

Environment Setup


CategoryRicottone

Python/Installation (last edited 2021-11-20 22:05:16 by DominicRicottone)