Como instalar o ROOT cern no Ubuntu 15

0
shinee@shinee:~/Downloads/root$ sudo apt-get install libx11-dev
Reading package lists... Done
Building dependency tree       
Reading state information... Done
Package libx11-dev is not available, but is referred to by another package.
This may mean that the package is missing, has been obsoleted, or
is only available from another source

E: Package 'libx11-dev' has no installation candidate
    
por Janchiw Shinee 17.09.2015 / 10:43

1 resposta

0

Se você encontrou o problema com

configure: c++11 mode is requested but the current compiler does not support it.

durante a execução de ./configure linux em um 64bit ubuntu 15.10, isso pode ser resolvido instalando / atualizando seus pacotes gcc e g++ :

sudo apt-get update
sudo apt-get install gcc g++

e especificando sua arquitetura no comando configure:

./configure linuxx8664gcc
    
por DominikCZ 05.02.2016 / 20:07