Skip to content

Installation

Akash R Chandran edited this page Jan 12, 2023 · 7 revisions

Let's try to install syrics on your local machine

Downloading Python

You'll require to have Python installed on your device to run the program.

Linux:

sudo apt update
sudo apt upgrade
sudo apt install python3 python3-pip

Termux:

apt update
apt upgrade
pkg install python

MacOS:

If you haven't already installed Homebew: Run /bin/bash -c "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/master/install.sh)"

brew install python 

Windows:

Now install a stable Python 3.6+ release from python.org and remember to install the right x64 or x86 according to your PC.

Make sure to check the box Add Python 3.6 to the PATH! while installation setup.

Installing

We will make use of pip, a python package manager.

pip install syrics

For some linux based operating systems, you may need to specify pip version.

pip3 install syrics

Updating

pip install syrics --upgrade

or for some linux based operating systems, you may need to specify pip version.

pip3 install syrics --upgrade

To get updated on new releases just star the repository.

image