1. Installing e3

It’s recommended to first read the design documents before following this training.

Lesson overview

In this lesson, you’ll learn how to do the following:

  • Download e3 from the ESS artifactory using pip.

  • Install an e3 environment using e3-build

  • Test your installation

Note

This chapter teaches you how to install an e3 environment from a specification. If you are working with a pre-built e3 environment, then this chapter can be skimmed or skipped.


Downloading e3

Note

ESS’ EPICS environment e3 is developed primarily for CentOS, and it is thus recommended to use CentOS7 while working through this tutorial. Note that e3 cannot currently be natively installed for Windows or MacOS.

Note

As e3 heavily relies on git, it is recommended to first be familiar with git, and especially git submodules.

If you are on a mostly blank CentOS7 machine, you can copy, paste, and run the following code segment before beginning. This will install all of the necessary packages that are needed for the majority of EPICS modules that are in use with e3.1

[iocuser@host:~]$ sudo yum install -y \
patch m4 gcc-c++ tclx python3-devel libtirpc-devel re2c patchelf \
libusb-devel libusbx-devel net-snmp-devel libxml2-devel \
readline-devel opencv-devel libudev-devel boost-devel python36-PyYAML \
libcurl-devel gsl-devel git glib2-devel xorg-x11-proto-devel \
libX11-devel libXext-devel bzip2-devel freetype-devel lcms2-devel \
ethercat-generic-dkms-1.5.2.ESS1-1

Start by downloading e3 from the artifactory.

[iocuser@host:~]$ pip3 install --user e3 -i https://artifactory.esss.lu.se/artifactory/api/pypi/pypi-virtual/simple

This will install a number of utilities, most importantly e3-build which will allow you to install an e3 environment on your local machine.

Selecting a specification

An e3 environment is described using a specification. This is a file that contains references to a version of EPICS base, require, and a collection of modules to install. These are intended to provide a mechanism to build consistent and reproducible environments that can be shared between different users and sites. These files will look something like the following.

config:
  base_version: 7.0.6.1-NA/7.0.6.1-ff3e2c9-20220209T143845
  require_version: 7.0.6.1-4.0.0/4.0.0-9b692d5-20220209T160204
meta:
  datestamp: 20220210T112407
modules:
  adcore:
    versions:
    - 7.0.6.1-4.0.0/3.10.0+2-52add63-20220210T112321
  adsupport:
    versions:
    - 7.0.6.1-4.0.0/1.9.0-c4b8ff4-20220210T112319
  ...

One can obtain the official specifications used at ESS by cloning the following repository:

[iocuser@host:~]$ git clone https://gitlab.esss.lu.se/e3/specifications.git

Building an e3 environment

Note

You can install epics where you want. The normal side-wide location is /epics which the rest of the tutorial expects as the location. For user installs ~/epics is a better location.

To build EPICS run the following command.

[iocuser@host:specifications]$ e3-build -t ~/epics specifications/2023q1.yml

EPICS base takes some time to build, so once you have run the above command, it is a good time to go and get a coffee.

Sourcing and testing the built environment

Once the environment is built, you can activate the environment (similar to activating a python virtual environment or a conda environment) using the shell script activate which is installed with the new environment.

[iocuser@host:~]$ source /epics/base-7.0.7/require/5.0.0/bin/activate

Set the ESS EPICS Environment as follows:
THIS Source NAME    : activate
THIS Source PATH    : /epics/base-7.0.7/require/5.0.0/bin
EPICS_BASE          : /epics/base-7.0.7
EPICS_HOST_ARCH     : linux-x86_64
E3_REQUIRE_LOCATION : /epics/base-7.0.7/require/5.0.0
PATH                : /epics/base-7.0.7/require/5.0.0/bin:/epics/base-7.0.7/bin/linux-x86_64:/usr/local/bin:/usr/bin:/usr/local/sbin:/usr/sbin:/home/iocuser/.local/bin:/home/iocuser/bin
LD_LIBRARY_PATH     : /epics/base-7.0.7/lib/linux-x86_64:/epics/base-7.0.7/require/5.0.0/lib/linux-x86_64

Enjoy E3!

You can now test that this worked by starting an IOC:

[iocuser@host:~]$ iocsh
# --- snip snip ---

# Set REQUIRE_IOC for its internal PVs
epicsEnvSet REQUIRE_IOC "REQMOD:host-15636"
#
# Enable an exit subroutine for sotfioc
dbLoadRecords "/epics/base-7.0.7/db/softIocExit.db" "IOC=REQMOD:host-15636"
#
# Set E3_IOCSH_TOP for the absolute path where iocsh is executed.
epicsEnvSet E3_IOCSH_TOP "/home/iocuser/specifications"
#
#
# Load require module, which has the version 5.0.0
#
dlload /epics/base-7.0.7/require/5.0.0/lib/linux-x86_64/librequire.so
dbLoadDatabase /epics/base-7.0.7/require/5.0.0/dbd/require.dbd
require_registerRecordDeviceDriver
Loading module info records for require
#
# Set the IOC Prompt String One
epicsEnvSet IOCSH_PS1 "host-15636 > "
#
#
iocInit
Starting iocInit
############################################################################
## EPICS R7.0.7-E3-7.0.7-patch
## Rev. 2022-03-09T15:26+0100
############################################################################
iocRun: All initialization complete
host-15636 >

Exit the IOC by typing exit at the console.

You can see which modules and versions have been installed by running

[iocuser@host:~]$ ls /epics/base-7.0.7/require/5.0.0/siteMods/*
/epics/base-7.0.7/require/5.0.0/siteMods/adcore:
3.12.1+0

/epics/base-7.0.7/require/5.0.0/siteMods/adsupport:
1.10.0+0

/epics/base-7.0.7/require/5.0.0/siteMods/asyn:
4.42.0+0

# --- snip snip ---

You can test any of these modules by running, for example,

[iocuser@host:~]$ iocsh -r asyn

Assignments

  1. Develop some understanding of how GNU Make and Makefiles work.

  2. Develop some understanding of how git submodules work.

  3. How are git submodules are used in e3?

  4. Install multiple EPICS base versions - e.g. 7.0.5 and 7.0.7 (separately) - on your host using two of the specifications included.


1

ethercat-generic-dkms-1.5.2.ESS1-1 is an ESS internal package. It can be found at: https://artifactory.esss.lu.se/artifactory/rpm-ics/centos/7/x86_64/. For ESS internal users, this package can be installed the same way as installing standard CentOS packages. For external users, one will need to add this repository to package manager’s repository-search-list to install this package.