Skip to content

Standard Linux Setup

Superior125 edited this page Apr 5, 2023 · 10 revisions

Standard Linux Setup

This guide will cover installing and setting up Ringer Server on Linux.

1. Installing python.

The first thing we will have to do to get started is to make sure we have Python installed on our Linux distro. To do this we can run the following command.

$ python3

If the command brings up the Python shell in the command line, you already have Python installed. To exit the shell simply press ctrl + c. Then move on to the next step. If you got an error, you probably don't have python installed. To install it, just run these commands.

$ sudo apt-get update
$ sudo apt-get install python3.6

Clone this wiki locally