ROOT Installation Guide » History » Version 23
Ole Hansen, 06/17/2018 10:04 PM
1 | 1 | Ole Hansen | h1. ROOT Installation Guide |
---|---|---|---|
2 | |||
3 | {{toc}} |
||
4 | |||
5 | "ROOT":https://root.cern is an advanced software package developed at "CERN":https://home.cern, the European Organization for Nuclear Research. It is widely used for data analysis and visualization in high-energy physics and nuclear physics as well as other fields. |
||
6 | |||
7 | ROOT can easily run on any modern laptop. You will need at least 2 GB of memory (4 GB recommended) and about 1 GB of disk space (2-3 GB if building from source). |
||
8 | |||
9 | Installing the software varies in difficulty from very easy to fairly high, depending on whether or not your computer is one of the "supported platforms":https://root.cern/supported-platforms. In general, there are three typical ways to get ROOT: |
||
10 | |||
11 | # A set of pre-compiled packages provided by your operating system's package manager |
||
12 | 2 | Ole Hansen | ** Very easy to install and almost certain to work well |
13 | 1 | Ole Hansen | ** Easy updating to new versions |
14 | ** Generally requires administrative privilege on your machine |
||
15 | ** Recommended approach, if possible |
||
16 | # A pre-compiled "binary distribution package":https://root.cern/content/release-61206 provided by the ROOT team. |
||
17 | ** Easy, but there is a certain risk of problems due to unexpected incompatibilities |
||
18 | ** Only available for the most recent operating system versions |
||
19 | ** May be installed privately without administrative privilege |
||
20 | ** Requires manual updating |
||
21 | # Building from "source":https://root.cern/building-root |
||
22 | ** Moderately difficult. Experience with building large software packages recommended. |
||
23 | ** Can take several hours to build. Cannot be done while running on laptop battery power. |
||
24 | ** Configuration can be tricky. Updating is a time-consuming manual process. |
||
25 | ** Missing dependencies are detected during configuration and may need to be installed separately |
||
26 | ** Gives access to all ROOT features, including very advanced ones (not generally needed) |
||
27 | |||
28 | The current version of ROOT is 6.12/06 at the time of his writing. Following are instructions to get up and running quickly with this version, if possible, on specific operating systems based on our experience. |
||
29 | |||
30 | 8 | Ole Hansen | h2{background:#D5D8DC}. Linux |
31 | 1 | Ole Hansen | |
32 | h3. Red Hat Enterprise Linux (RHEL) 7, CentOS 7 and compatible |
||
33 | |||
34 | # Enable the "EPEL":https://fedoraproject.org/wiki/EPEL (Extra Packages for Linux) repository. Follow the "EPEL Quickstart instructions":https://fedoraproject.org/wiki/EPEL#Quickstart. |
||
35 | 6 | Ole Hansen | # Install the core ROOT package. This will install the most commonly used libraries. More packages are available if you need advanced features later. |
36 | 1 | Ole Hansen | <pre> |
37 | sudo yum install root |
||
38 | </pre> |
||
39 | 6 | Ole Hansen | # To work with ROOT from within Python 3, also install python34-root. This will automatically install python 3.4 as well: |
40 | 1 | Ole Hansen | <pre> |
41 | sudo yum install python34-root |
||
42 | </pre> |
||
43 | |||
44 | h3. Fedora |
||
45 | |||
46 | 7 | Ole Hansen | For Fedora 24 and higher, ROOT 6 is available in the main Fedora repository. The current version of ROOT, 6.12/06, requires at least Fedora 26. Simply do |
47 | 1 | Ole Hansen | <pre> |
48 | sudo yum install root |
||
49 | sudo yum install python3-root |
||
50 | </pre> |
||
51 | |||
52 | For Fedora 20-22, CERN offers binary distributions of older versions of ROOT: |
||
53 | |||
54 | 5 | Ole Hansen | * "ROOT 6.08/06 for Fedora 22":https://root.cern/download/root_v6.08.06.Linux-fedora22-x86_64-gcc5.3.tar.gz |
55 | 1 | Ole Hansen | * "ROOT 6.06/08 for Fedora 21":https://root.cern/download/root_v6.06.08.Linux-fedora21-x86_64-gcc4.9.tar.gz |
56 | * "ROOT 6.06/08 for Fedora 20":https://root.cern/download/root_v6.06.08.Linux-fedora20-x86_64-gcc4.8.tar.gz |
||
57 | |||
58 | 11 | Ole Hansen | See [[Installing ROOT from a CERN binary distribution|installing a binary distribution]] for instructions. |
59 | 1 | Ole Hansen | |
60 | h3. Ubuntu |
||
61 | |||
62 | At present, Ubuntu repositories only offer ROOT 5 packages, which should be considered obsolete. Do not install these. To get ROOT 6 on Ubuntu 14, 16 or 17, download and install the appropriate binary release from CERN: |
||
63 | |||
64 | * "ROOT 6.12/06 for Ubuntu 17":https://root.cern/download/root_v6.12.06.Linux-ubuntu17-x86_64-gcc7.2.tar.gz |
||
65 | * "ROOT 6.12/06 for Ubuntu 16":https://root.cern/download/root_v6.12.06.Linux-ubuntu16-x86_64-gcc5.4.tar.gz |
||
66 | * "ROOT 6.12/06 for Ubuntu 14":https://root.cern/download/root_v6.12.06.Linux-ubuntu14-x86_64-gcc4.8.tar.gz |
||
67 | |||
68 | 12 | Ole Hansen | See [[Installing ROOT from a CERN binary distribution|installing a binary distribution]] for instructions. |
69 | 1 | Ole Hansen | |
70 | h3. Arch Linux, Debian, and other Linux varieties with at least gcc 4.8 |
||
71 | |||
72 | 10 | Ole Hansen | [[Building ROOT from source|Build ROOT from source]]. |
73 | 1 | Ole Hansen | |
74 | h3. RHEL6, CentOS 6 and older Linux distributions |
||
75 | |||
76 | ROOT 6 cannot be installed easily on these systems, not even from source, because the system compiler is too old. (ROOT 6 requires a fully C++11-capable compiler.) Pre-built ROOT 5 packages are available, however. |
||
77 | |||
78 | 14 | Ole Hansen | Of course, it is possible to run ROOT 6 even on quite old Linux systems. One needs to install a modern compiler first, build ROOT from source using that compiler, and run ROOT with that compiler's runtime libraries. This procedure is beyond the scope of this document, however. |
79 | 1 | Ole Hansen | |
80 | 8 | Ole Hansen | h2{background:#D5D8DC}. macOS |
81 | 1 | Ole Hansen | |
82 | 21 | Ole Hansen | Before attempting to install ROOT, please set up the Xcode command line tools (unless already done). From a Terminal, run |
83 | <pre> |
||
84 | $ xcode-select --install |
||
85 | </pre> |
||
86 | Once this command completes, you should have a working compiler: |
||
87 | <pre> |
||
88 | $ g++ --version |
||
89 | Configured with: --prefix=/Applications/Xcode.app/Contents/Developer/usr --with-gxx-include-dir=/usr/include/c++/4.2.1 |
||
90 | Apple LLVM version 9.0.0 (clang-900.0.39.2) |
||
91 | ... |
||
92 | </pre> |
||
93 | 1 | Ole Hansen | |
94 | 21 | Ole Hansen | A quick way to get ROOT on macOS/OSX 10.8-10.13 is to download the appropriate binary distribution from CERN: |
95 | |||
96 | 1 | Ole Hansen | * "ROOT 6.12/06 for macOS 10.13":https://root.cern/download/root_v6.12.06.macosx64-10.13-clang90.tar.gz |
97 | * "ROOT 6.12/06 for macOS 10.12":https://root.cern/download/root_v6.12.06.macosx64-10.12-clang90.tar.gz |
||
98 | * "ROOT 6.10/08 for macOS 10.11":https://root.cern/download/root_v6.10.08.macosx64-10.11-clang80.tar.gz |
||
99 | 13 | Ole Hansen | * "ROOT 6.08/06 for macOS 10.10":https://root.cern/download/root_v6.08.06.macosx64-10.10-clang70.tar.gz |
100 | 1 | Ole Hansen | * "ROOT 6.06/08 for macOS 10.9":https://root.cern/download/root_v6.06.08.macosx64-10.9-clang60.tar.gz |
101 | 18 | Ole Hansen | * "ROOT 6.04/06 for macOS 10.8":https://root.cern/download/root_v6.04.06.macosx64-10.8-clang51.tar.gz |
102 | 1 | Ole Hansen | |
103 | See [[Installing ROOT from a CERN binary distribution|installing a binary distribution]] for instructions. |
||
104 | |||
105 | 21 | Ole Hansen | However, please note that using versions of ROOT older than 6.08 is discouraged as those releases were quite buggy. If you still run an old version of macOS, it may be better to get the latest ROOT release and [[Building ROOT from source|build from source]]. |
106 | 1 | Ole Hansen | |
107 | 21 | Ole Hansen | ROOT is also available from "Homebrew":https://brew.sh (package root) and "MacPorts":https://www.macports.org (package root6). For example, you can install it from Homebrew on macOS 10.11-10.13 as follows: |
108 | 1 | Ole Hansen | |
109 | 21 | Ole Hansen | # Install Homebrew (skip if you have already done that before): |
110 | 1 | Ole Hansen | <pre> |
111 | /usr/bin/ruby -e "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/master/install)" |
||
112 | </pre> |
||
113 | 21 | Ole Hansen | Follow the text prompts to complete the installation. |
114 | # With Homebrew set up, installing ROOT and Python 3 is now very easy: |
||
115 | 1 | Ole Hansen | <pre> |
116 | brew install root python |
||
117 | </pre> |
||
118 | 21 | Ole Hansen | |
119 | 1 | Ole Hansen | Homebrew's ROOT comes with support for Homebrew's Python 3, while the CERN binary distributions support Apple's native Python 2. However, CERN's binary releases are built with more features enabled. |
120 | |||
121 | 8 | Ole Hansen | h2{background:#D5D8DC}. Windows |
122 | 1 | Ole Hansen | |
123 | 23 | Ole Hansen | As of ROOT 6.14/00, CERN offers a "prebuilt distribution":https://root.cern.ch/content/release-61400 for Windows. It requires the "VisualStudio 2017 Redistributable C++ Runtime":https://go.microsoft.com/fwlink/?LinkId=746572 and should work on Windows 7 and up. See also the general "Visual Studio 2017 download page":https://www.visualstudio.com/downloads/. |
124 | 1 | Ole Hansen | |
125 | 23 | Ole Hansen | Alternatively, you can download and install "VirtualBox":https://www.virtualbox.org and run our "CentOS 7 virtual machine image":http://hallaweb.jlab.org/data_reduc/AnaWork2018/VirtualBox, wheew ROOT (and other useful software) are pre-installed. You will also find installation instructions there. Unfortunately, this requires a large download, about 30 GB of disk space for the uncompressed VM image, and at least 4 GB, preferably 8 GB, of memory on your host computer. |
126 | 1 | Ole Hansen | |
127 | |||
128 | h2{background:#D5D8DC}. Testing your installation |
||
129 | 9 | Ole Hansen | |
130 | If you installed ROOT from your distribution's package manager, or from Homebrew/MacPorts, no setup should be necessary to start using the software. Just type @root@, and you should see this: |
||
131 | <pre> |
||
132 | 19 | Ole Hansen | shell prompt$ root |
133 | 9 | Ole Hansen | ------------------------------------------------------------ |
134 | | Welcome to ROOT 6.12/06 http://root.cern.ch | |
||
135 | | (c) 1995-2017, The ROOT Team | |
||
136 | | Built for macosx64 | |
||
137 | | From tag v6-12-06, 9 February 2018 | |
||
138 | | Try '.help', '.demo', '.license', '.credits', '.quit'/'.q' | |
||
139 | ------------------------------------------------------------ |
||
140 | |||
141 | root [0] |
||
142 | </pre> |
||
143 | |||
144 | If you installed a binary distribution or from source, you will need to run a setup script first: |
||
145 | <pre> |
||
146 | source <dir-where-you-installed-root>/bin/thisroot.sh |
||
147 | </pre> |
||
148 | or, if you are using @tcsh@ |
||
149 | <pre> |
||
150 | source <dir-where-you-installed-root>/bin/thisroot.csh |
||
151 | </pre> |
||
152 | After doing so, the @root@ command should be available, and you can start ROOT as shown above. |
||
153 | |||
154 | 22 | Ole Hansen | Now you can type |
155 | <pre> |
||
156 | root [0] .demo |
||
157 | </pre> |
||
158 | at the ROOT prompt for a flashy demonstration of some of ROOT's graphics capabilities. |
||
159 | 9 | Ole Hansen | |
160 | It is probably a good idea to set up ROOT from your shell's login script. To do so, simply put the above "source" command near the end of your @~/.bash_profile@ (or @~/.login@ for @csh/tcsh@). |
||
161 | 1 | Ole Hansen | |
162 | 19 | Ole Hansen | Sourcing the setup script is also necessary on the JLab ifarm systems. There, you can find various ROOT versions installed under @/apps/root@. For example, to use the latest version, do |
163 | <pre> |
||
164 | ifarm1402.jlab.org$ source /apps/root/6.12.04/bin/thisroot.csh |
||
165 | </pre> |
||
166 | Then proceed as described above to test ROOT. |
||
167 | 9 | Ole Hansen | |
168 | 19 | Ole Hansen | Sometimes it is interesting to find out more details about the installation of ROOT that you are working with. ROOT provides a command called @root-config@ for this purpose. For example, to show which "features" (capabilities) ROOT was compiled with, run @root-config --features@. Here is an example from JLab's RHEL7 ifarm systems, which you can run after setting up ROOT as described in the preceding paragraph: |
169 | 9 | Ole Hansen | <pre> |
170 | 19 | Ole Hansen | ifarm1402.jlab.org$ which root-config |
171 | 9 | Ole Hansen | /u/apps/root/6.12.04/root/bin/root-config |
172 | 19 | Ole Hansen | ifarm1402.jlab.org$ root-config --features |
173 | 9 | Ole Hansen | asimage astiff builtin_afterimage builtin_ftgl builtin_gl2ps builtin_glew builtin_llvm builtin_lz4 builtin_tbb |
174 | builtin_unuran cling cxx11 exceptions explicitlink fftw3 gdml genvector http imt mathmore minuit2 mysql opengl |
||
175 | pch pgsql python qt roofit shared soversion sqlite ssl thread tmva unuran x11 xft xml |
||
176 | </pre> |
||
177 | Some of these items are self-explanatory, others probably obscure. Consult the ROOT documentation for a full description. |
||
178 | 19 | Ole Hansen | |
179 | 9 | Ole Hansen | h2{background:#D5D8DC}. Python support |
180 | 16 | Ole Hansen | |
181 | 9 | Ole Hansen | You can see "python" in the "feature list" above, indicating support for Python 2. We can check this further: |
182 | 1 | Ole Hansen | <pre> |
183 | 20 | Ole Hansen | ifarm1402.jlab.org$ root-config --python-version |
184 | 9 | Ole Hansen | 2.7 |
185 | </pre> |
||
186 | 1 | Ole Hansen | This version of ROOT therefore has support for Python 2.7. We can try it out: |
187 | 17 | Ole Hansen | <pre> |
188 | 20 | Ole Hansen | ifarm1402.jlab.org$ python -c 'import ROOT' |
189 | 1 | Ole Hansen | </pre> |
190 | If this finishes without error, this version of Python will probably work correctly with this version of ROOT. However, be careful; sometimes multiple versions of Python are installed on the same machine. On ifarm, there are two Python 2.7 versions: |
||
191 | <pre> |
||
192 | 20 | Ole Hansen | ifarm1402.jlab.org$ which python |
193 | 9 | Ole Hansen | /apps/bin/python |
194 | 20 | Ole Hansen | ifarm1402.jlab.org$ /apps/bin/python --version |
195 | 9 | Ole Hansen | Python 2.7.12 |
196 | 20 | Ole Hansen | ifarm1402.jlab.org$ /usr/bin/python --version |
197 | 9 | Ole Hansen | Python 2.7.5 |
198 | 17 | Ole Hansen | </pre> |
199 | 1 | Ole Hansen | In this case, do not be completely surprised if your Python/ROOT experience turns out to be a bit bumpy and be prepared to file a bug report. On your personal system, try to make sure that only one version is installed. |