The purpose of this document is to indicate how to set up a server that will be used to process game commands and to run the server.
###Pyton3 LiveCoding server is writen in python language. So it is necessary to install python in your system to run the server.
Follow this link to install python3: Python3 install
###Pip3 Pip3 allow you to install python modules. Normally pip3 is installed with python3. So there is nothing to do.
- Go to http://windows.php.net/download/
- Download the latest Non Thread Safe binaries
- Extract the files to
C:\php
- Add
C:\php
in the environment path variable $ php -f <filename.php>
- Go to https://nodejs.org/en/download/
- Download the latest Windows Installer (.msi)
- Install Node
$ node <filename.js>
- Go to https://rubyinstaller.org/downloads/
- Download Ruby 2.4.3-1
- Set the installation path to be
C:\Ruby
and make sureAdd ruby executables to you path
$ ruby <filename.rb>
###Python3 LiveCoding server is writen in python language. So it is necessary to install python in your system to run the server. to install python3 type the follow command in your console:
# apt-get install build-essential
###Pip3 Pip3 allow you to install python modules.To install pip3 type the follow command in your console:
# apt-get install python-pip3
1.$ sudo apt-get install php-5
2. $ php -f <filename.php>
1.$ sudo apt-get install nodejs
2. $ nodejs <filename.js>
1.$ sudo apt-get install ruby-full
2. $ ruby <filename.rb>
In ordre to use added modules in LiveCoding server you must install using pip3:
Colored Logs
# pip3 install colored coloredlogs
Websockets
# pip3 install websockets