| [ Web Proxy ] |
| Viewing: https://raw.githubusercontent.com/makelinux/examples/main/python/pythonX-install.sh | [Back] [Original] |
#!/bin/sh
# https://launchpad.net/~deadsnakes/+archive/ubuntu/ppa
grep --quiet '^deb.*deadsnakes/ppa' --recursive /etc/apt/sources.list.d/ || sudo add-apt-repository ppa:deadsnakes/ppa
sudo apt-get -q update
for v in 2.{3..7} 3.{1..10}; do
which python$v || sudo apt-get --yes install python$v
done
| Web Proxy Viewer | New URL | Original Page |