How To Install root-tree-dataframe on CentOS 8
Introduction
In this tutorial we learn how to install root-tree-dataframe
on CentOS 8.
What is root-tree-dataframe
This package contains a high level interface to ROOT trees.
We can use yum
or dnf
to install root-tree-dataframe
on CentOS 8. In this tutorial we discuss both methods but you only need to choose one of method to install root-tree-dataframe.
Install root-tree-dataframe on CentOS 8 Using dnf
Update yum database with dnf
using the following command.
sudo dnf makecache --refresh
The output should look something like this:
CentOS Linux 8 - AppStream 43 kB/s | 4.3 kB 00:00
CentOS Linux 8 - BaseOS 65 kB/s | 3.9 kB 00:00
CentOS Linux 8 - ContinuousRelease 43 kB/s | 3.0 kB 00:00
CentOS Linux 8 - Extras 23 kB/s | 1.5 kB 00:00
CentOS Linux 8 - FastTrack 40 kB/s | 3.0 kB 00:00
CentOS Linux 8 - HighAvailability 36 kB/s | 3.9 kB 00:00
CentOS Linux 8 - Plus 24 kB/s | 1.5 kB 00:00
CentOS Linux 8 - PowerTools 50 kB/s | 4.3 kB 00:00
Extra Packages for Enterprise Linux Modular 8 - x86_64 13 kB/s | 9.2 kB 00:00
Extra Packages for Enterprise Linux 8 - x86_64 24 kB/s | 8.5 kB 00:00
Metadata cache created.
After updating yum database, We can install root-tree-dataframe
using dnf
by running the following command:
sudo dnf -y install root-tree-dataframe
Install root-tree-dataframe on CentOS 8 Using yum
Update yum database with yum
using the following command.
sudo yum makecache --refresh
The output should look something like this:
CentOS Linux 8 - AppStream 43 kB/s | 4.3 kB 00:00
CentOS Linux 8 - BaseOS 65 kB/s | 3.9 kB 00:00
CentOS Linux 8 - ContinuousRelease 43 kB/s | 3.0 kB 00:00
CentOS Linux 8 - Extras 23 kB/s | 1.5 kB 00:00
CentOS Linux 8 - FastTrack 40 kB/s | 3.0 kB 00:00
CentOS Linux 8 - HighAvailability 36 kB/s | 3.9 kB 00:00
CentOS Linux 8 - Plus 24 kB/s | 1.5 kB 00:00
CentOS Linux 8 - PowerTools 50 kB/s | 4.3 kB 00:00
Extra Packages for Enterprise Linux Modular 8 - x86_64 13 kB/s | 9.2 kB 00:00
Extra Packages for Enterprise Linux 8 - x86_64 24 kB/s | 8.5 kB 00:00
Metadata cache created.
After updating yum database, We can install root-tree-dataframe
using yum
by running the following command:
sudo yum -y install root-tree-dataframe
How To Uninstall root-tree-dataframe on CentOS 8
To uninstall only the root-tree-dataframe
package we can use the following command:
sudo dnf remove root-tree-dataframe
root-tree-dataframe Package Contents on CentOS 8
/usr/include/root/ROOT/RArrowDS.hxx
/usr/include/root/ROOT/RCsvDS.hxx
/usr/include/root/ROOT/RDF/ActionHelpers.hxx
/usr/include/root/ROOT/RDF/GraphNode.hxx
/usr/include/root/ROOT/RDF/GraphUtils.hxx
/usr/include/root/ROOT/RDF/HistoModels.hxx
/usr/include/root/ROOT/RDF/InterfaceUtils.hxx
/usr/include/root/ROOT/RDF/NodesUtils.hxx
/usr/include/root/ROOT/RDF/PyROOTHelpers.hxx
/usr/include/root/ROOT/RDF/RAction.hxx
/usr/include/root/ROOT/RDF/RActionBase.hxx
/usr/include/root/ROOT/RDF/RBookedCustomColumns.hxx
/usr/include/root/ROOT/RDF/RColumnValue.hxx
/usr/include/root/ROOT/RDF/RCustomColumn.hxx
/usr/include/root/ROOT/RDF/RCustomColumnBase.hxx
/usr/include/root/ROOT/RDF/RCutFlowReport.hxx
/usr/include/root/ROOT/RDF/RDisplay.hxx
/usr/include/root/ROOT/RDF/RFilter.hxx
/usr/include/root/ROOT/RDF/RFilterBase.hxx
/usr/include/root/ROOT/RDF/RInterface.hxx
/usr/include/root/ROOT/RDF/RJittedAction.hxx
/usr/include/root/ROOT/RDF/RJittedCustomColumn.hxx
/usr/include/root/ROOT/RDF/RJittedFilter.hxx
/usr/include/root/ROOT/RDF/RLazyDSImpl.hxx
/usr/include/root/ROOT/RDF/RLoopManager.hxx
/usr/include/root/ROOT/RDF/RNodeBase.hxx
/usr/include/root/ROOT/RDF/RRange.hxx
/usr/include/root/ROOT/RDF/RRangeBase.hxx
/usr/include/root/ROOT/RDF/RSlotStack.hxx
/usr/include/root/ROOT/RDF/Utils.hxx
/usr/include/root/ROOT/RDFHelpers.hxx
/usr/include/root/ROOT/RDataFrame.hxx
/usr/include/root/ROOT/RDataSource.hxx
/usr/include/root/ROOT/RLazyDS.hxx
/usr/include/root/ROOT/RNTupleDS.hxx
/usr/include/root/ROOT/RResultPtr.hxx
/usr/include/root/ROOT/RRootDS.hxx
/usr/include/root/ROOT/RSnapshotOptions.hxx
/usr/include/root/ROOT/RSqliteDS.hxx
/usr/include/root/ROOT/RTrivialDS.hxx
/usr/include/root/ROOT/TDataFrame.hxx
/usr/include/root/ROOT/TResultProxy.hxx
/usr/lib/.build-id
/usr/lib/.build-id/97/8d8cb30585f1ad76b3f926e49cc5f9ea0f120b
/usr/lib64/root/libROOTDataFrame.rootmap
/usr/lib64/root/libROOTDataFrame.so
/usr/lib64/root/libROOTDataFrame.so.6.22
/usr/lib64/root/libROOTDataFrame.so.6.22.08
/usr/lib64/root/libROOTDataFrame_rdict.pcm
References
Summary
In this tutorial we learn how to install root-tree-dataframe
on CentOS 8 using yum and dnf.