Installing ROOT in ubuntu 11.10

In summary, installing ROOT in Ubuntu 11.10 is a straightforward process that involves downloading the ROOT package and installing it using the terminal. It is important to ensure that all necessary dependencies are met before beginning the installation. Once installed, ROOT can be accessed through the terminal or through the graphical user interface. Additionally, there are several tutorials and resources available for further customization and utilization of ROOT's powerful data analysis and visualization capabilities.
  • #1
welatiger
85
0
when installing ROOT in ubuntu 11.10 i have the following message

name@ubuntu:~/root$ ./configure
Checking for source directory ... /home/waleed/root
Configuring for linuxx8664gcc
Checking for GNU Make version >= 3.80 ... ok
Checking for C compiler ... gcc
Checking for C++ compiler ... g++
Checking for linker (LD) ... g++
Checking for F77 compiler ... no F77 compiler gfortran found
Checking for libX11 ... no
configure: libX11 MUST be installed
See http://root.cern.ch/drupal/content/build-prerequisites


what can i do?
 
Computer science news on Phys.org
  • #2
I haven't personally tried installing ROOT on Ubuntu, but some googling turned up

http://root.cern.ch/drupal/content/build-prerequisites

It looks like, at the very least, you should install libx11-dev.
 
  • #3
I am on Lucid lynx ubuntu
to install the cern root oo language:
click (french version) on Applications/Logithèque ubuntu (under sound and video/science et ingenierie/physique and then on then on root.
Root will appear in Application/programming
Is it what you want?
 
  • #4
thank you so much for ur concern
but how to install libx11-dev package
i tried to do but with no effect
 
  • #5
welatiger said:
thank you so much for ur concern
but how to install libx11-dev package
i tried to do but with no effect

Ubuntu should have apt or synaptic. From that CERN page I linked above,

Use "sudo apt-get install package" or use the graphical "Synaptic Package Manager" program.

You need administrator or sudo access to your computer to do this. If you don't know what that means you should talk to whoever maintains your computer.
 
  • #6
If you do it the way I told you lib11-dev will be installed. I just verified it with synaptic
 
  • #7
In english it is called "ubuntu software center" (logithèque ubuntu in french".
 
  • #8
i have installed the package

name@ubuntu:~/Downloads$ sudo apt-get install libx11-dev
Reading package lists... Done
Building dependency tree
Reading state information... Done
libx11-dev is already the newest version.
0 upgraded, 0 newly installed, 0 to remove and 0 not upgraded.

but the same messeage appears
 
  • #9
*******************************************
* *
* W E L C O M E to R O O T *
* *
* Version 5.18/00b 10 March 2008 *
* *
* You are welcome to visit our Web site *
* http://root.cern.ch *
* *
*******************************************

ROOT 5.18/00b (branches/v5-18-00-patches@22563, Apr 06 2010, 01:56:00 on linux)

CINT/ROOT C/C++ Interpreter version 5.16.29, Jan 08, 2008
Type ? for help. Commands must be C++ statements.
Enclose multiple statements between { }.
root [0]
 

1. How do I install ROOT in Ubuntu 11.10?

To install ROOT in Ubuntu 11.10, you can follow these steps:

  • Open the terminal by pressing Ctrl+Alt+T.
  • Update your package list by running the command sudo apt-get update.
  • Install the necessary dependencies by running the command sudo apt-get install build-essential dpkg-dev cmake g++ gcc gfortran git make patch python-dev wget.
  • Clone the ROOT repository from GitHub by running the command git clone https://github.com/root-project/root.git.
  • Navigate to the root/ directory and run ./configure to configure the installation.
  • Run make to build ROOT.
  • Finally, run sudo make install to install ROOT on your system.

2. What are the system requirements for installing ROOT in Ubuntu 11.10?

The minimum system requirements for installing ROOT in Ubuntu 11.10 are:

  • 1 GB of RAM
  • 5 GB of available disk space
  • Ubuntu 11.10 or later
  • 64-bit processor

3. Can I install ROOT on a 32-bit system?

Yes, you can install ROOT on a 32-bit system. However, some features may not be available or may not work as expected.

4. How do I check if ROOT is successfully installed on my system?

To check if ROOT is successfully installed on your system, you can run the command root-config --version in the terminal. This will display the version of ROOT installed on your system.

5. Can I uninstall ROOT from my Ubuntu 11.10 system?

Yes, you can uninstall ROOT from your Ubuntu 11.10 system by running the command sudo make uninstall from the root/ directory. This will remove all the files and directories related to ROOT from your system.

Similar threads

Replies
6
Views
6K
Replies
16
Views
2K
Replies
2
Views
2K
  • Nuclear Engineering
Replies
6
Views
1K
Replies
2
Views
5K
  • Programming and Computer Science
Replies
4
Views
3K
  • Programming and Computer Science
Replies
4
Views
4K
  • Programming and Computer Science
Replies
2
Views
5K
  • Programming and Computer Science
Replies
4
Views
3K
Back
Top