Install Python Interpreter on Ubuntu VPS or Dedicated Server

This article provides a step-by-step guide to installing the Python interpreter on an Ubuntu VPS or Dedicated Server.

Update and Upgrade

Before installing the Python interpreter, it is recommended to update the server with the latest Ubuntu files. As the root user, run the following commands in your terminal:

apt-get update
apt-get upgrade

Download Latest Version of Python

After updating the operating system, run the following commands to install the latest version of Python:

cd /opt
wget https://www.python.org/ftp/python/3.4.2/Python-3.4.2.tgz

Unpack the download:

tar -xzvf Python-3.4.2.tgz

Installing Python

Install Python using the following:

cd Python-3.4.2
./configure
make
make altinstall

If you run into any errors during installation, view the guide for installing the C compiler.

  • ubuntu, python interpreter, install python
  • 180 Utenti hanno trovato utile questa risposta
Hai trovato utile questa risposta?

Articoli Correlati

What Server Virtualization Are Your Hypervisors?

All VPS hypervisors use KVM virtualization technology. Order here: KVM VPS servers

How to Update MTU Speed on CentOS VPS

Follow this guide to update MTU speed on CentOS VPS servers. Prerequisites To update the MTU...

What are My root User Login Credentials?

The root (admin) user password is randomly generated. This password can be found in your welcome...

Modify Server Hostname Using SSH in CentOS

This article provides a guide to modify server Hostname using SSH in CentOS server. You can use...

Reboot Linux Server Using SSH

This article provides a guide for rebooting a Linux-based VPS or dedicated server using the SSH...