Skip to content

Installation#

Installation for Windows OS#

Detection of Third-Party Dependencies#

Install the Microsoft C++ Redistributable 2015 from the official website https://www.microsoft.com/en-us/download/details.aspx?id=52685.

FaceStream Installation#

To install FaceStream on Windows, unpack the "facestream_win_{}.zip" archive.

Installation for CentOS#

The following commands should be performed under the root user.

  • Unpack the archive
yum install unzip
unzip facestream_linux_{}.zip

Third-Party Dependencies Installation#

  • Add the Epel repository.
yum -y install epel-release
  • Run the following command for dependencies installation
yum -y install SDL2 glog libevent alsa-lib snappy gtk3 daemonize boost-chrono boost-filesystem boost-locale boost-regex boost-atomic boost-context boost-program-options boost-random boost-date-time

Graphical User Interface#

If you are going to use the show-window option (see section "Show-window") for debug purposes a graphical system interface is required. You should install it if there is no interface installed in your system.

Do not install a graphical system interface on a server!

For example, you can install GNOME interface. Installation will take a long time.

yum -y groups install "GNOME Desktop"
startx
Back to top