Contenu | Rechercher | Menus

Annonce

Si vous avez des soucis pour rester connecté, déconnectez-vous puis reconnectez-vous depuis ce lien en cochant la case
Me connecter automatiquement lors de mes prochaines visites.

À propos de l'équipe du forum.

#26 Le 13/02/2019, à 06:35

xubu1957

Re : [Résolu] Installation R version 3.5 sur ubuntu 16.04.5

Bonjour,

Pour poursuivre les vérifications sur l'état de ton système, donne :

echo; dpkg -l | grep -Ei "linux-(g|h|i|lo|mo|si|t)" | grep -v ^rc | sort -k3 | awk '{print $1,$2,$3,$4}' | column -s" " -t ; echo ; uname -mr ; echo
sudo du -am -d1 /boot 2>/dev/null | sort -nr | head -20 ; echo

_ _ _

Pour l'anomalie, je trouve cette réponse :

Bonjour, le rcpparmadillo qui est extrait en tant que dépendance nécessite un g++ plus récent que celui fourni par dashDB. Pour contourner ce problème, vous devrez procéder à l'installation en 2 parties. Commencez par télécharger un ancien paquetage rcpparmadillo sur rstudio qui fonctionne avec le g ++ présent sur le système (...)

> developer.ibm.com/answers/questions/289852/forecast-and-rcpparmadillo-package-installation-is/

Montre :

g++ --version
gcc --version
gfortran --version

repris dans cette page ancienne > stackoverflow.com/questions/6302209/building-r-package-getting-error-ld-cannot-find-lgfortran

Dernière modification par xubu1957 (Le 13/02/2019, à 07:11)


Conseils pour les nouveaux demandeurs et pas qu'eux
Important : Pensez à passer vos sujets en [Résolu] lorsque ceux-ci le sont, au début du titre en cliquant sur Modifier sous le premier message, et un bref récapitulatif de la solution à la fin de celui-ci. Merci.                   Membre de Linux-Azur

Hors ligne

#27 Le 13/02/2019, à 10:24

Skyroots

Re : [Résolu] Installation R version 3.5 sur ubuntu 16.04.5

Bonjour voici les retours:

moi@xmglaptop:~$ echo; dpkg -l | grep -Ei "linux-(g|h|i|lo|mo|si|t)" | grep -v ^rc | sort -k3 | awk '{print $1,$2,$3,$4}' | column -s" " -t ; echo ; uname -mr ; echo

ii  linux-headers-4.15.0-43                4.15.0-43.46~16.04.1  all
ii  linux-modules-4.15.0-43-generic        4.15.0-43.46~16.04.1  amd64
ii  linux-modules-extra-4.15.0-43-generic  4.15.0-43.46~16.04.1  amd64
ii  linux-headers-4.15.0-43-generic        4.15.0-43.46~16.04.1  amd64
ii  linux-image-4.15.0-43-generic          4.15.0-43.46~16.04.1  amd64
ii  linux-headers-4.15.0-45                4.15.0-45.48~16.04.1  all
ii  linux-modules-4.15.0-45-generic        4.15.0-45.48~16.04.1  amd64
ii  linux-modules-extra-4.15.0-45-generic  4.15.0-45.48~16.04.1  amd64
ii  linux-headers-4.15.0-45-generic        4.15.0-45.48~16.04.1  amd64
ii  linux-image-4.15.0-45-generic          4.15.0-45.48~16.04.1  amd64
ii  linux-generic-hwe-16.04                4.15.0.45.66          amd64
ii  linux-signed-generic-hwe-16.04         4.15.0.45.66          amd64
ii  linux-headers-generic-hwe-16.04        4.15.0.45.66          amd64
ii  linux-image-generic-hwe-16.04          4.15.0.45.66          amd64
ii  linux-generic                          4.4.0.142.148         amd64
ii  linux-headers-generic                  4.4.0.142.148         amd64
ii  linux-image-generic                    4.4.0.142.148         amd64
ii  linux-headers-4.4.0-142                4.4.0-142.168         all
ii  linux-image-extra-4.4.0-142-generic    4.4.0-142.168         amd64
ii  linux-headers-4.4.0-142-generic        4.4.0-142.168         amd64
ii  linux-image-4.4.0-142-generic          4.4.0-142.168         amd64

4.15.0-45-generic x86_64

moi@xmglaptop:~$
moi@xmglaptop:~$ sudo du -am -d1 /boot 2>/dev/null | sort -nr | head -20 ; echo[sudo] Mot de passe de moi : 
221	/boot
52	/boot/initrd.img-4.15.0-45-generic
52	/boot/initrd.img-4.15.0-43-generic
45	/boot/initrd.img-4.4.0-142-generic
30	/boot/efi
9	/boot/grub
8	/boot/vmlinuz-4.15.0-45-generic
8	/boot/vmlinuz-4.15.0-43-generic
7	/boot/vmlinuz-4.4.0-142-generic
4	/boot/System.map-4.4.0-142-generic
4	/boot/System.map-4.15.0-45-generic
4	/boot/System.map-4.15.0-43-generic
2	/boot/abi-4.4.0-142-generic
1	/boot/retpoline-4.4.0-142-generic
1	/boot/memtest86+_multiboot.bin
1	/boot/memtest86+.elf
1	/boot/memtest86+.bin
1	/boot/config-4.4.0-142-generic
1	/boot/config-4.15.0-45-generic
1	/boot/config-4.15.0-43-generic

moi@xmglaptop:~$ 
moi@xmglaptop:~$ g++ --version
g++ (Ubuntu 5.4.0-6ubuntu1~16.04.11) 5.4.0 20160609
Copyright (C) 2015 Free Software Foundation, Inc.
This is free software; see the source for copying conditions.  There is NO
warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.

moi@xmglaptop:~$ 
moi@xmglaptop:~$ gcc --version
gcc (Ubuntu 5.4.0-6ubuntu1~16.04.11) 5.4.0 20160609
Copyright (C) 2015 Free Software Foundation, Inc.
This is free software; see the source for copying conditions.  There is NO
warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.

moi@xmglaptop:~$ 
moi@xmglaptop:~$ gfortran --version
Le programme « gfortran » n'est pas encore installé. Vous pouvez l'installer en tapant :
sudo apt install gfortran
moi@xmglaptop:~$ 

Du coup j'ai installé

sudo apt install gfortran

et j'ai relancé DESeq2, c'est mieux, mais ça ne marche toujours pas:

> if (!requireNamespace("BiocManager", quietly = TRUE))
+     install.packages("BiocManager")
> BiocManager::install("DESeq2", version = "3.8")
Bioconductor version 3.8 (BiocManager 1.30.4), R 3.5.2 (2018-12-20)
Installing package(s) 'DESeq2'
also installing the dependencies ‘acepack’, ‘genefilter’, ‘Hmisc’, ‘RcppArmadillo’

essai de l'URL 'https://cloud.r-project.org/src/contrib/acepack_1.4.1.tar.gz'
Content type 'application/x-gzip' length 34848 bytes (34 KB)
==================================================
downloaded 34 KB

essai de l'URL 'https://bioconductor.org/packages/3.8/bioc/src/contrib/genefilter_1.64.0.tar.gz'
Content type 'application/x-gzip' length 1432889 bytes (1.4 MB)
==================================================
downloaded 1.4 MB

essai de l'URL 'https://cloud.r-project.org/src/contrib/Hmisc_4.2-0.tar.gz'
Content type 'application/x-gzip' length 732731 bytes (715 KB)
==================================================
downloaded 715 KB

essai de l'URL 'https://cloud.r-project.org/src/contrib/RcppArmadillo_0.9.200.7.0.tar.gz'
Content type 'application/x-gzip' length 1333647 bytes (1.3 MB)
==================================================
downloaded 1.3 MB

essai de l'URL 'https://bioconductor.org/packages/3.8/bioc/src/contrib/DESeq2_1.22.2.tar.gz'
Content type 'application/x-gzip' length 2062838 bytes (2.0 MB)
==================================================
downloaded 2.0 MB

* installing *source* package ‘acepack’ ...
** package ‘acepack’ correctement décompressé et sommes MD5 vérifiées
** libs
gfortran   -fpic  -g -O2 -fstack-protector-strong  -c ace.f -o ace.o
gfortran   -fpic  -g -O2 -fstack-protector-strong  -c avas.f -o avas.o
gfortran   -fpic  -g -O2 -fstack-protector-strong  -c rlsmo.f -o rlsmo.o
gcc -std=gnu99 -shared -L/usr/lib/R/lib -Wl,-Bsymbolic-functions -Wl,-z,relro -o acepack.so ace.o avas.o rlsmo.o -lgfortran -lm -lquadmath -L/usr/lib/R/lib -lR
installing to /home/moi/R/x86_64-pc-linux-gnu-library/3.5/acepack/libs
** R
** inst
** byte-compile and prepare package for lazy loading
** help
*** installing help indices
** building package indices
** testing if installed package can be loaded
* DONE (acepack)
* installing *source* package ‘genefilter’ ...
** libs
g++  -I"/usr/share/R/include" -DNDEBUG      -fpic  -g -O2 -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -g  -c half_range_mode.cpp -o half_range_mode.o
gcc -std=gnu99 -I"/usr/share/R/include" -DNDEBUG      -fpic  -g -O2 -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -g  -c init.c -o init.o
gcc -std=gnu99 -I"/usr/share/R/include" -DNDEBUG      -fpic  -g -O2 -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -g  -c nd.c -o nd.o
gcc -std=gnu99 -I"/usr/share/R/include" -DNDEBUG      -fpic  -g -O2 -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -g  -c pAUC.c -o pAUC.o
gcc -std=gnu99 -I"/usr/share/R/include" -DNDEBUG      -fpic  -g -O2 -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -g  -c rowPAUCs.c -o rowPAUCs.o
gcc -std=gnu99 -I"/usr/share/R/include" -DNDEBUG      -fpic  -g -O2 -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -g  -c rowttests.c -o rowttests.o
gfortran   -fpic  -g -O2 -fstack-protector-strong  -c ttest.f -o ttest.o
g++ -shared -L/usr/lib/R/lib -Wl,-Bsymbolic-functions -Wl,-z,relro -o genefilter.so half_range_mode.o init.o nd.o pAUC.o rowPAUCs.o rowttests.o ttest.o -lgfortran -lm -lquadmath -L/usr/lib/R/lib -lR
installing to /home/moi/R/x86_64-pc-linux-gnu-library/3.5/genefilter/libs
** R
** data
*** moving datasets to lazyload DB
** inst
** byte-compile and prepare package for lazy loading
** help
*** installing help indices
** building package indices
** installing vignettes
** testing if installed package can be loaded
* DONE (genefilter)
* installing *source* package ‘RcppArmadillo’ ...
** package ‘RcppArmadillo’ correctement décompressé et sommes MD5 vérifiées
checking whether the C++ compiler works... yes
checking for C++ compiler default output file name... a.out
checking for suffix of executables... 
checking whether we are cross compiling... no
checking for suffix of object files... o
checking whether we are using the GNU C++ compiler... yes
checking whether g++ accepts -g... yes
checking how to run the C++ preprocessor... g++ -E
checking whether we are using the GNU C++ compiler... (cached) yes
checking whether g++ accepts -g... (cached) yes
checking whether g++ version is sufficient... yes, with OpenMP as version 5.4.0
checking for macOS... checking LAPACK_LIBS... system LAPACK found
checking for OpenMP... found and suitable
configure: creating ./config.status
config.status: creating inst/include/RcppArmadilloConfigGenerated.h
config.status: creating src/Makevars
** libs
g++ -std=gnu++11 -I"/usr/share/R/include" -DNDEBUG  -I"/home/moi/R/x86_64-pc-linux-gnu-library/3.5/Rcpp/include"   -I../inst/include -fopenmp -fpic  -g -O2 -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -g -c RcppArmadillo.cpp -o RcppArmadillo.o
g++ -std=gnu++11 -I"/usr/share/R/include" -DNDEBUG  -I"/home/moi/R/x86_64-pc-linux-gnu-library/3.5/Rcpp/include"   -I../inst/include -fopenmp -fpic  -g -O2 -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -g -c RcppExports.cpp -o RcppExports.o
g++ -std=gnu++11 -I"/usr/share/R/include" -DNDEBUG  -I"/home/moi/R/x86_64-pc-linux-gnu-library/3.5/Rcpp/include"   -I../inst/include -fopenmp -fpic  -g -O2 -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -g -c fastLm.cpp -o fastLm.o
g++ -std=gnu++11 -shared -L/usr/lib/R/lib -Wl,-Bsymbolic-functions -Wl,-z,relro -o RcppArmadillo.so RcppArmadillo.o RcppExports.o fastLm.o -fopenmp -llapack -lblas -lgfortran -lm -lquadmath -L/usr/lib/R/lib -lR
/usr/bin/ld : ne peut trouver -llapack
/usr/bin/ld : ne peut trouver -lblas
collect2: error: ld returned 1 exit status
/usr/share/R/share/make/shlib.mk:6 : la recette pour la cible « RcppArmadillo.so » a échouée
make: *** [RcppArmadillo.so] Erreur 1
ERROR: compilation failed for package ‘RcppArmadillo’
* removing ‘/home/moi/R/x86_64-pc-linux-gnu-library/3.5/RcppArmadillo’
* installing *source* package ‘Hmisc’ ...
** package ‘Hmisc’ correctement décompressé et sommes MD5 vérifiées
** libs
gcc -std=gnu99 -I"/usr/share/R/include" -DNDEBUG      -fpic  -g -O2 -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -g  -c Hmisc.c -o Hmisc.o
gfortran   -fpic  -g -O2 -fstack-protector-strong  -c cidxcn.f -o cidxcn.o
gfortran   -fpic  -g -O2 -fstack-protector-strong  -c cidxcp.f -o cidxcp.o
gfortran   -fpic  -g -O2 -fstack-protector-strong  -c hoeffd.f -o hoeffd.o
gcc -std=gnu99 -I"/usr/share/R/include" -DNDEBUG      -fpic  -g -O2 -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -g  -c init.c -o init.o
gfortran   -fpic  -g -O2 -fstack-protector-strong  -c jacklins.f -o jacklins.o
gfortran   -fpic  -g -O2 -fstack-protector-strong  -c largrec.f -o largrec.o
gcc -std=gnu99 -I"/usr/share/R/include" -DNDEBUG      -fpic  -g -O2 -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -g  -c mChoice.c -o mChoice.o
gfortran   -fpic  -g -O2 -fstack-protector-strong  -c maxempr.f -o maxempr.o
gcc -std=gnu99 -I"/usr/share/R/include" -DNDEBUG      -fpic  -g -O2 -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -g  -c nstr.c -o nstr.o
gcc -std=gnu99 -I"/usr/share/R/include" -DNDEBUG      -fpic  -g -O2 -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -g  -c ranksort.c -o ranksort.o
gfortran   -fpic  -g -O2 -fstack-protector-strong  -c rcorr.f -o rcorr.o
gcc -std=gnu99 -I"/usr/share/R/include" -DNDEBUG      -fpic  -g -O2 -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -g  -c string_box.c -o string_box.o
gfortran   -fpic  -g -O2 -fstack-protector-strong  -c wclosest.f -o wclosest.o
gcc -std=gnu99 -shared -L/usr/lib/R/lib -Wl,-Bsymbolic-functions -Wl,-z,relro -o Hmisc.so Hmisc.o cidxcn.o cidxcp.o hoeffd.o init.o jacklins.o largrec.o mChoice.o maxempr.o nstr.o ranksort.o rcorr.o string_box.o wclosest.o -lgfortran -lm -lquadmath -L/usr/lib/R/lib -lR
installing to /home/moi/R/x86_64-pc-linux-gnu-library/3.5/Hmisc/libs
** R
** inst
** byte-compile and prepare package for lazy loading
** help
*** installing help indices
** building package indices
** testing if installed package can be loaded
* DONE (Hmisc)
ERROR: dependency ‘RcppArmadillo’ is not available for package ‘DESeq2’
* removing ‘/home/moi/R/x86_64-pc-linux-gnu-library/3.5/DESeq2’

The downloaded source packages are in
	‘/tmp/RtmpZUo2Xa/downloaded_packages’
installation path not writeable, unable to update packages: evaluate
Warning messages:
1: In install.packages(pkgs = doing, lib = lib, repos = repos, ...) :
  installation of package ‘RcppArmadillo’ had non-zero exit status
2: In install.packages(pkgs = doing, lib = lib, repos = repos, ...) :
  installation of package ‘DESeq2’ had non-zero exit status

Et pour le package RcppArmadillo ça ne marche pas non plus:

> install.packages("RcppArmadillo")
Installing package into ‘/home/moi/R/x86_64-pc-linux-gnu-library/3.5’
(as ‘lib’ is unspecified)
essai de l'URL 'https://cloud.r-project.org/src/contrib/RcppArmadillo_0.9.200.7.0.tar.gz'
Content type 'application/x-gzip' length 1333647 bytes (1.3 MB)
==================================================
downloaded 1.3 MB

* installing *source* package ‘RcppArmadillo’ ...
** package ‘RcppArmadillo’ correctement décompressé et sommes MD5 vérifiées
checking whether the C++ compiler works... yes
checking for C++ compiler default output file name... a.out
checking for suffix of executables... 
checking whether we are cross compiling... no
checking for suffix of object files... o
checking whether we are using the GNU C++ compiler... yes
checking whether g++ accepts -g... yes
checking how to run the C++ preprocessor... g++ -E
checking whether we are using the GNU C++ compiler... (cached) yes
checking whether g++ accepts -g... (cached) yes
checking whether g++ version is sufficient... yes, with OpenMP as version 5.4.0
checking for macOS... checking LAPACK_LIBS... system LAPACK found
checking for OpenMP... found and suitable
configure: creating ./config.status
config.status: creating inst/include/RcppArmadilloConfigGenerated.h
config.status: creating src/Makevars
** libs
g++ -std=gnu++11 -I"/usr/share/R/include" -DNDEBUG  -I"/home/moi/R/x86_64-pc-linux-gnu-library/3.5/Rcpp/include"   -I../inst/include -fopenmp -fpic  -g -O2 -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -g -c RcppArmadillo.cpp -o RcppArmadillo.o
g++ -std=gnu++11 -I"/usr/share/R/include" -DNDEBUG  -I"/home/moi/R/x86_64-pc-linux-gnu-library/3.5/Rcpp/include"   -I../inst/include -fopenmp -fpic  -g -O2 -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -g -c RcppExports.cpp -o RcppExports.o
g++ -std=gnu++11 -I"/usr/share/R/include" -DNDEBUG  -I"/home/moi/R/x86_64-pc-linux-gnu-library/3.5/Rcpp/include"   -I../inst/include -fopenmp -fpic  -g -O2 -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -g -c fastLm.cpp -o fastLm.o
g++ -std=gnu++11 -shared -L/usr/lib/R/lib -Wl,-Bsymbolic-functions -Wl,-z,relro -o RcppArmadillo.so RcppArmadillo.o RcppExports.o fastLm.o -fopenmp -llapack -lblas -lgfortran -lm -lquadmath -L/usr/lib/R/lib -lR
/usr/bin/ld : ne peut trouver -llapack
/usr/bin/ld : ne peut trouver -lblas
collect2: error: ld returned 1 exit status
/usr/share/R/share/make/shlib.mk:6 : la recette pour la cible « RcppArmadillo.so » a échouée
make: *** [RcppArmadillo.so] Erreur 1
ERROR: compilation failed for package ‘RcppArmadillo’
* removing ‘/home/moi/R/x86_64-pc-linux-gnu-library/3.5/RcppArmadillo’
Warning in install.packages :
  installation of package ‘RcppArmadillo’ had non-zero exit status

The downloaded source packages are in
        ‘/tmp/RtmpZUo2Xa/downloaded_packages’

Dernière modification par Skyroots (Le 13/02/2019, à 10:30)


Je débute Linux !
(Ubuntu 16.04.5 LTS)

"L'ouverture d'esprit n'a jamais fait de fracture au crâne"

Hors ligne

#28 Le 13/02/2019, à 10:39

xubu1957

Re : [Résolu] Installation R version 3.5 sur ubuntu 16.04.5

Je découvre !

La version :

Bioconductor version 3.8 (BiocManager 1.30.4), R 3.5.2 (2018-12-20)

est elle adaptée > bioconductor.org pour la 3.5 de R ?


Conseils pour les nouveaux demandeurs et pas qu'eux
Important : Pensez à passer vos sujets en [Résolu] lorsque ceux-ci le sont, au début du titre en cliquant sur Modifier sous le premier message, et un bref récapitulatif de la solution à la fin de celui-ci. Merci.                   Membre de Linux-Azur

Hors ligne

#29 Le 13/02/2019, à 10:46

Skyroots

Re : [Résolu] Installation R version 3.5 sur ubuntu 16.04.5

oui je pense car j'ai la version R 3.5.2, comme écrit après Bioconductor version 3.8:

Bioconductor version 3.8 (BiocManager 1.30.4), R 3.5.2 (2018-12-20)

Je débute Linux !
(Ubuntu 16.04.5 LTS)

"L'ouverture d'esprit n'a jamais fait de fracture au crâne"

Hors ligne

#30 Le 13/02/2019, à 10:47

xubu1957

Re : [Résolu] Installation R version 3.5 sur ubuntu 16.04.5

Pour le nettoyage des noyaux, il faut utiliser la procédure de la Doc > kernel#via_autoremove

extrait § 5.1 a écrit :

(...) , il suffit de passer cette commande dans le terminal :

sudo apt-mark auto $(apt-mark showmanual | egrep 'linux-.*[0-9]' | grep -v "hwe")

Puis de repasser la commande de nettoyage automatique :

sudo apt-get autoremove --purge

Après cela, il ne restera que le dernier noyau et l'avant-dernier


Conseils pour les nouveaux demandeurs et pas qu'eux
Important : Pensez à passer vos sujets en [Résolu] lorsque ceux-ci le sont, au début du titre en cliquant sur Modifier sous le premier message, et un bref récapitulatif de la solution à la fin de celui-ci. Merci.                   Membre de Linux-Azur

Hors ligne

#31 Le 13/02/2019, à 10:49

Skyroots

Re : [Résolu] Installation R version 3.5 sur ubuntu 16.04.5

fait !


Je débute Linux !
(Ubuntu 16.04.5 LTS)

"L'ouverture d'esprit n'a jamais fait de fracture au crâne"

Hors ligne

#32 Le 13/02/2019, à 10:52

xubu1957

Re : [Résolu] Installation R version 3.5 sur ubuntu 16.04.5

Si tu as redémarré, redonne :

sudo du -am -d1 /boot 2>/dev/null | sort -nr | head -20 ; echo

Conseils pour les nouveaux demandeurs et pas qu'eux
Important : Pensez à passer vos sujets en [Résolu] lorsque ceux-ci le sont, au début du titre en cliquant sur Modifier sous le premier message, et un bref récapitulatif de la solution à la fin de celui-ci. Merci.                   Membre de Linux-Azur

Hors ligne

#33 Le 13/02/2019, à 10:56

Skyroots

Re : [Résolu] Installation R version 3.5 sur ubuntu 16.04.5

moi@xmglaptop:~$ sudo du -am -d1 /boot 2>/dev/null | sort -nr | head -20 ; echo[sudo] Mot de passe de moi : 
221	/boot
52	/boot/initrd.img-4.15.0-45-generic
52	/boot/initrd.img-4.15.0-43-generic
45	/boot/initrd.img-4.4.0-142-generic
30	/boot/efi
9	/boot/grub
8	/boot/vmlinuz-4.15.0-45-generic
8	/boot/vmlinuz-4.15.0-43-generic
7	/boot/vmlinuz-4.4.0-142-generic
4	/boot/System.map-4.4.0-142-generic
4	/boot/System.map-4.15.0-45-generic
4	/boot/System.map-4.15.0-43-generic
2	/boot/abi-4.4.0-142-generic
1	/boot/retpoline-4.4.0-142-generic
1	/boot/memtest86+_multiboot.bin
1	/boot/memtest86+.elf
1	/boot/memtest86+.bin
1	/boot/config-4.4.0-142-generic
1	/boot/config-4.15.0-45-generic
1	/boot/config-4.15.0-43-generic

moi@xmglaptop:~$ 

Je débute Linux !
(Ubuntu 16.04.5 LTS)

"L'ouverture d'esprit n'a jamais fait de fracture au crâne"

Hors ligne

#34 Le 13/02/2019, à 10:58

xubu1957

Re : [Résolu] Installation R version 3.5 sur ubuntu 16.04.5

Le noyau 4.4.0-142 n'est pas parti !

Je laisse la main à cqfd93.


Conseils pour les nouveaux demandeurs et pas qu'eux
Important : Pensez à passer vos sujets en [Résolu] lorsque ceux-ci le sont, au début du titre en cliquant sur Modifier sous le premier message, et un bref récapitulatif de la solution à la fin de celui-ci. Merci.                   Membre de Linux-Azur

Hors ligne

#35 Le 13/02/2019, à 11:01

Skyroots

Re : [Résolu] Installation R version 3.5 sur ubuntu 16.04.5

ok wink big_smile


Je débute Linux !
(Ubuntu 16.04.5 LTS)

"L'ouverture d'esprit n'a jamais fait de fracture au crâne"

Hors ligne

#36 Le 13/02/2019, à 11:03

cqfd93

Re : [Résolu] Installation R version 3.5 sur ubuntu 16.04.5

Bonjour,

Je ne saurais pas vraiment aider pour les problèmes de dépendances mais je peux ajouter mon grain de sel pour les noyaux. Les commandes que xubu1957 donne dans son message #30 risquent de ne pas être suffisantes pour éliminer le noyau 4.4 à cause de la présence du méta-paquet linux-generic qui le ferait de toutes façons revenir. Mais puisque les méta-paquets hwe-16.04 sont présents, on peut se débarrasser définitivement de linux-generic et du 4.4.

Passer cette longue commande :

sudo apt purge linux-generic linux-headers-generic linux-image-generic linux-headers-4.4.0-142 linux-image-extra-4.4.0-142-generic linux-headers-4.4.0-142-generic linux-image-4.4.0-142-generic

Et vérifier avec :

echo; dpkg -l | grep -Ei "linux-(g|h|i|lo|mo|si|t)" | grep -v ^rc | sort -k3 | awk '{print $1,$2,$3,$4}' | column -s" " -t ; echo ; uname -mr ; echo
sudo du -am -d1 /boot 2>/dev/null | sort -nr | head -20 ; echo

cqfd93

Hors ligne

#37 Le 13/02/2019, à 11:44

Skyroots

Re : [Résolu] Installation R version 3.5 sur ubuntu 16.04.5

Merci !

moi@xmglaptop:~$ sudo apt purge linux-generic linux-headers-generic linux-image-generic linux-headers-4.4.0-142 linux-image-extra-4.4.0-142-generic linux-headers-4.4.0-142-generic linux-image-4.4.0-142-generic
[sudo] Mot de passe de moi : 
Lecture des listes de paquets... Fait
Construction de l'arbre des dépendances       
Lecture des informations d'état... Fait
Les paquets suivants seront ENLEVÉS :
  linux-generic* linux-headers-4.4.0-142* linux-headers-4.4.0-142-generic*
  linux-headers-generic* linux-image-4.4.0-142-generic*
  linux-image-extra-4.4.0-142-generic* linux-image-generic*
0 mis à jour, 0 nouvellement installés, 7 à enlever et 1 non mis à jour.
Après cette opération, 303 Mo d'espace disque seront libérés.
Souhaitez-vous continuer ? [O/n] o
(Lecture de la base de données... 356327 fichiers et répertoires déjà installés.)
Suppression de linux-generic (4.4.0.142.148) ...
Suppression de linux-headers-generic (4.4.0.142.148) ...
Suppression de linux-headers-4.4.0-142-generic (4.4.0-142.168) ...
Suppression de linux-headers-4.4.0-142 (4.4.0-142.168) ...
Suppression de linux-image-generic (4.4.0.142.148) ...
Suppression de linux-image-extra-4.4.0-142-generic (4.4.0-142.168) ...
run-parts: executing /etc/kernel/postinst.d/apt-auto-removal 4.4.0-142-generic /boot/vmlinuz-4.4.0-142-generic
run-parts: executing /etc/kernel/postinst.d/dkms 4.4.0-142-generic /boot/vmlinuz-4.4.0-142-generic
run-parts: executing /etc/kernel/postinst.d/initramfs-tools 4.4.0-142-generic /boot/vmlinuz-4.4.0-142-generic
update-initramfs: Generating /boot/initrd.img-4.4.0-142-generic
run-parts: executing /etc/kernel/postinst.d/pm-utils 4.4.0-142-generic /boot/vmlinuz-4.4.0-142-generic
run-parts: executing /etc/kernel/postinst.d/unattended-upgrades 4.4.0-142-generic /boot/vmlinuz-4.4.0-142-generic
run-parts: executing /etc/kernel/postinst.d/update-notifier 4.4.0-142-generic /boot/vmlinuz-4.4.0-142-generic
run-parts: executing /etc/kernel/postinst.d/zz-update-grub 4.4.0-142-generic /boot/vmlinuz-4.4.0-142-generic
Création du fichier de configuration GRUB…
Image Linux trouvée : /boot/vmlinuz-4.15.0-45-generic
Image mémoire initiale trouvée : /boot/initrd.img-4.15.0-45-generic
Image Linux trouvée : /boot/vmlinuz-4.15.0-43-generic
Image mémoire initiale trouvée : /boot/initrd.img-4.15.0-43-generic
Image Linux trouvée : /boot/vmlinuz-4.4.0-142-generic
Image mémoire initiale trouvée : /boot/initrd.img-4.4.0-142-generic
Windows Boot Manager trouvé sur /dev/sda1@/EFI/Microsoft/Boot/bootmgfw.efi
Adding boot menu entry for EFI firmware configuration
fait
Purge des fichiers de configuration de linux-image-extra-4.4.0-142-generic (4.4.0-142.168) ...
Suppression de linux-image-4.4.0-142-generic (4.4.0-142.168) ...
Examining /etc/kernel/prerm.d.
run-parts: executing /etc/kernel/prerm.d/dkms 4.4.0-142-generic /boot/vmlinuz-4.4.0-142-generic
dkms: removing: bbswitch 0.8 (4.4.0-142-generic) (x86_64)

-------- Uninstall Beginning --------
Module:  bbswitch
Version: 0.8
Kernel:  4.4.0-142-generic (x86_64)
-------------------------------------

Status: Before uninstall, this module version was ACTIVE on this kernel.

bbswitch.ko:
 - Uninstallation
   - Deleting from: /lib/modules/4.4.0-142-generic/updates/dkms/
 - Original module
   - No original module was found for this module on this kernel.
   - Use the dkms install command to reinstall any previous module version.

depmod....

DKMS: uninstall completed.
dkms: removing: nvidia-381 381.22 (4.4.0-142-generic) (x86_64)

-------- Uninstall Beginning --------
Module:  nvidia-381
Version: 381.22
Kernel:  4.4.0-142-generic (x86_64)
-------------------------------------

Status: Before uninstall, this module version was ACTIVE on this kernel.

nvidia_381.ko:
 - Uninstallation
   - Deleting from: /lib/modules/4.4.0-142-generic/updates/dkms/
 - Original module
   - No original module was found for this module on this kernel.
   - Use the dkms install command to reinstall any previous module version.


nvidia_381_modeset.ko:
 - Uninstallation
   - Deleting from: /lib/modules/4.4.0-142-generic/updates/dkms/
 - Original module
   - No original module was found for this module on this kernel.
   - Use the dkms install command to reinstall any previous module version.


nvidia_381_drm.ko:
 - Uninstallation
   - Deleting from: /lib/modules/4.4.0-142-generic/updates/dkms/
 - Original module
   - No original module was found for this module on this kernel.
   - Use the dkms install command to reinstall any previous module version.


nvidia_381_uvm.ko:
 - Uninstallation
   - Deleting from: /lib/modules/4.4.0-142-generic/updates/dkms/
 - Original module
   - No original module was found for this module on this kernel.
   - Use the dkms install command to reinstall any previous module version.

depmod....

DKMS: uninstall completed.

------------------------------
Deleting module version: 381.22
completely from the DKMS tree.
------------------------------
Done.
Examining /etc/kernel/postrm.d .
run-parts: executing /etc/kernel/postrm.d/initramfs-tools 4.4.0-142-generic /boot/vmlinuz-4.4.0-142-generic
update-initramfs: Deleting /boot/initrd.img-4.4.0-142-generic
run-parts: executing /etc/kernel/postrm.d/zz-update-grub 4.4.0-142-generic /boot/vmlinuz-4.4.0-142-generic
Création du fichier de configuration GRUB…
Image Linux trouvée : /boot/vmlinuz-4.15.0-45-generic
Image mémoire initiale trouvée : /boot/initrd.img-4.15.0-45-generic
Image Linux trouvée : /boot/vmlinuz-4.15.0-43-generic
Image mémoire initiale trouvée : /boot/initrd.img-4.15.0-43-generic
Windows Boot Manager trouvé sur /dev/sda1@/EFI/Microsoft/Boot/bootmgfw.efi
Adding boot menu entry for EFI firmware configuration
fait
The link /vmlinuz.old is a damaged link
Removing symbolic link vmlinuz.old 
 you may need to re-run your boot loader[grub]
The link /initrd.img.old is a damaged link
Removing symbolic link initrd.img.old 
 you may need to re-run your boot loader[grub]
Purge des fichiers de configuration de linux-image-4.4.0-142-generic (4.4.0-142.168) ...
Examining /etc/kernel/postrm.d .
run-parts: executing /etc/kernel/postrm.d/initramfs-tools 4.4.0-142-generic /boot/vmlinuz-4.4.0-142-generic
run-parts: executing /etc/kernel/postrm.d/zz-update-grub 4.4.0-142-generic /boot/vmlinuz-4.4.0-142-generic
moi@xmglaptop:~$ 
moi@xmglaptop:~$ echo; dpkg -l | grep -Ei "linux-(g|h|i|lo|mo|si|t)" | grep -v ^rc | sort -k3 | awk '{print $1,$2,$3,$4}' | column -s" " -t ; echo ; uname -mr ; echo

ii  linux-headers-4.15.0-43                4.15.0-43.46~16.04.1  all
ii  linux-modules-4.15.0-43-generic        4.15.0-43.46~16.04.1  amd64
ii  linux-modules-extra-4.15.0-43-generic  4.15.0-43.46~16.04.1  amd64
ii  linux-headers-4.15.0-43-generic        4.15.0-43.46~16.04.1  amd64
ii  linux-image-4.15.0-43-generic          4.15.0-43.46~16.04.1  amd64
ii  linux-headers-4.15.0-45                4.15.0-45.48~16.04.1  all
ii  linux-modules-4.15.0-45-generic        4.15.0-45.48~16.04.1  amd64
ii  linux-modules-extra-4.15.0-45-generic  4.15.0-45.48~16.04.1  amd64
ii  linux-headers-4.15.0-45-generic        4.15.0-45.48~16.04.1  amd64
ii  linux-image-4.15.0-45-generic          4.15.0-45.48~16.04.1  amd64
ii  linux-generic-hwe-16.04                4.15.0.45.66          amd64
ii  linux-signed-generic-hwe-16.04         4.15.0.45.66          amd64
ii  linux-headers-generic-hwe-16.04        4.15.0.45.66          amd64
ii  linux-image-generic-hwe-16.04          4.15.0.45.66          amd64

4.15.0-45-generic x86_64

moi@xmglaptop:~$ 
moi@xmglaptop:~$ sudo du -am -d1 /boot 2>/dev/null | sort -nr | head -20 ; echo164	/boot
52	/boot/initrd.img-4.15.0-45-generic
52	/boot/initrd.img-4.15.0-43-generic
30	/boot/efi
9	/boot/grub
8	/boot/vmlinuz-4.15.0-45-generic
8	/boot/vmlinuz-4.15.0-43-generic
4	/boot/System.map-4.15.0-45-generic
4	/boot/System.map-4.15.0-43-generic
1	/boot/memtest86+_multiboot.bin
1	/boot/memtest86+.elf
1	/boot/memtest86+.bin
1	/boot/config-4.15.0-45-generic
1	/boot/config-4.15.0-43-generic

moi@xmglaptop:~$ 

J’ai relancé l’installation mais ça bloque toujours:

> if (!requireNamespace("BiocManager", quietly = TRUE))
+     install.packages("BiocManager")
> BiocManager::install("DESeq2", version = "3.8")
Bioconductor version 3.8 (BiocManager 1.30.4), R 3.5.2 (2018-12-20)
Installing package(s) 'DESeq2'
also installing the dependency ‘RcppArmadillo’

essai de l'URL 'https://cloud.r-project.org/src/contrib/RcppArmadillo_0.9.200.7.0.tar.gz'
Content type 'application/x-gzip' length 1333647 bytes (1.3 MB)
==================================================
downloaded 1.3 MB

essai de l'URL 'https://bioconductor.org/packages/3.8/bioc/src/contrib/DESeq2_1.22.2.tar.gz'
Content type 'application/x-gzip' length 2062838 bytes (2.0 MB)
==================================================
downloaded 2.0 MB

* installing *source* package ‘RcppArmadillo’ ...
** package ‘RcppArmadillo’ correctement décompressé et sommes MD5 vérifiées
checking whether the C++ compiler works... yes
checking for C++ compiler default output file name... a.out
checking for suffix of executables... 
checking whether we are cross compiling... no
checking for suffix of object files... o
checking whether we are using the GNU C++ compiler... yes
checking whether g++ accepts -g... yes
checking how to run the C++ preprocessor... g++ -E
checking whether we are using the GNU C++ compiler... (cached) yes
checking whether g++ accepts -g... (cached) yes
checking whether g++ version is sufficient... yes, with OpenMP as version 5.4.0
checking for macOS... checking LAPACK_LIBS... system LAPACK found
checking for OpenMP... found and suitable
configure: creating ./config.status
config.status: creating inst/include/RcppArmadilloConfigGenerated.h
config.status: creating src/Makevars
** libs
g++ -std=gnu++11 -I"/usr/share/R/include" -DNDEBUG  -I"/home/moi/R/x86_64-pc-linux-gnu-library/3.5/Rcpp/include"   -I../inst/include -fopenmp -fpic  -g -O2 -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -g -c RcppArmadillo.cpp -o RcppArmadillo.o
g++ -std=gnu++11 -I"/usr/share/R/include" -DNDEBUG  -I"/home/moi/R/x86_64-pc-linux-gnu-library/3.5/Rcpp/include"   -I../inst/include -fopenmp -fpic  -g -O2 -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -g -c RcppExports.cpp -o RcppExports.o
g++ -std=gnu++11 -I"/usr/share/R/include" -DNDEBUG  -I"/home/moi/R/x86_64-pc-linux-gnu-library/3.5/Rcpp/include"   -I../inst/include -fopenmp -fpic  -g -O2 -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -g -c fastLm.cpp -o fastLm.o
g++ -std=gnu++11 -shared -L/usr/lib/R/lib -Wl,-Bsymbolic-functions -Wl,-z,relro -o RcppArmadillo.so RcppArmadillo.o RcppExports.o fastLm.o -fopenmp -llapack -lblas -lgfortran -lm -lquadmath -L/usr/lib/R/lib -lR
/usr/bin/ld : ne peut trouver -llapack
/usr/bin/ld : ne peut trouver -lblas
collect2: error: ld returned 1 exit status
/usr/share/R/share/make/shlib.mk:6 : la recette pour la cible « RcppArmadillo.so » a échouée
make: *** [RcppArmadillo.so] Erreur 1
ERROR: compilation failed for package ‘RcppArmadillo’
* removing ‘/home/moi/R/x86_64-pc-linux-gnu-library/3.5/RcppArmadillo’
ERROR: dependency ‘RcppArmadillo’ is not available for package ‘DESeq2’
* removing ‘/home/moi/R/x86_64-pc-linux-gnu-library/3.5/DESeq2’

The downloaded source packages are in
        ‘/tmp/Rtmp38ASg2/downloaded_packages’
installation path not writeable, unable to update packages: evaluate
Warning messages:
1: In install.packages(pkgs = doing, lib = lib, repos = repos, ...) :
  installation of package ‘RcppArmadillo’ had non-zero exit status
2: In install.packages(pkgs = doing, lib = lib, repos = repos, ...) :
  installation of package ‘DESeq2’ had non-zero exit status

Je débute Linux !
(Ubuntu 16.04.5 LTS)

"L'ouverture d'esprit n'a jamais fait de fracture au crâne"

Hors ligne

#38 Le 13/02/2019, à 11:52

xubu1957

Re : [Résolu] Installation R version 3.5 sur ubuntu 16.04.5

Pour ces anomalies, tu as consulté le forum > forums.cirad.fr/logiciel-R/viewforum ?

Ou  support.bioconductor.org.


Conseils pour les nouveaux demandeurs et pas qu'eux
Important : Pensez à passer vos sujets en [Résolu] lorsque ceux-ci le sont, au début du titre en cliquant sur Modifier sous le premier message, et un bref récapitulatif de la solution à la fin de celui-ci. Merci.                   Membre de Linux-Azur

Hors ligne

#39 Le 13/02/2019, à 13:31

Skyroots

Re : [Résolu] Installation R version 3.5 sur ubuntu 16.04.5

Oui j'ai parcouru les forums mais sans réponse qui marche, j'ai notamment essayé:

curl -O http://r.research.att.com/libs/gfortran-4.8.2-darwin13.tar.bz2
sudo tar fvxz gmp-4.2.4-darwin8-bin4.tar.gz -C /
install.packages("xtable")

Peut être que c'est un problème de version g++ ? Mais pourtant j'ai la dernière version

https://support.bioconductor.org/p/76093/
https://support.bioconductor.org/p/71268/

Dernière modification par Skyroots (Le 13/02/2019, à 13:35)


Je débute Linux !
(Ubuntu 16.04.5 LTS)

"L'ouverture d'esprit n'a jamais fait de fracture au crâne"

Hors ligne

#40 Le 13/02/2019, à 14:16

xubu1957

Re : [Résolu] Installation R version 3.5 sur ubuntu 16.04.5

Au #5, xubu a écrit :

Essaye :

sudo apt-get update
sudo apt-get install libcurl4-openssl-dev

> howtoinstall.co/en/ubuntu/xenial/libcurl4-openssl-dev

Vu support.bioconductor.org/p/90994

Le paquet est-il installé ?


Conseils pour les nouveaux demandeurs et pas qu'eux
Important : Pensez à passer vos sujets en [Résolu] lorsque ceux-ci le sont, au début du titre en cliquant sur Modifier sous le premier message, et un bref récapitulatif de la solution à la fin de celui-ci. Merci.                   Membre de Linux-Azur

Hors ligne

#41 Le 13/02/2019, à 15:20

Skyroots

Re : [Résolu] Installation R version 3.5 sur ubuntu 16.04.5

oui:

moi@xmglaptop:~$ sudo apt-get install libcurl4-openssl-dev
Lecture des listes de paquets... Fait
Construction de l'arbre des dépendances       
Lecture des informations d'état... Fait
libcurl4-openssl-dev est déjà la version la plus récente (7.47.0-1ubuntu2.12).
0 mis à jour, 0 nouvellement installés, 0 à enlever et 1 non mis à jour.
moi@xmglaptop:~$ 

Je débute Linux !
(Ubuntu 16.04.5 LTS)

"L'ouverture d'esprit n'a jamais fait de fracture au crâne"

Hors ligne

#42 Le 13/02/2019, à 15:26

xubu1957

Re : [Résolu] Installation R version 3.5 sur ubuntu 16.04.5

Je ne suis pas apte à t'aider plus pour ces logiciels !

Désolé. sad


Conseils pour les nouveaux demandeurs et pas qu'eux
Important : Pensez à passer vos sujets en [Résolu] lorsque ceux-ci le sont, au début du titre en cliquant sur Modifier sous le premier message, et un bref récapitulatif de la solution à la fin de celui-ci. Merci.                   Membre de Linux-Azur

Hors ligne

#43 Le 13/02/2019, à 15:29

Skyroots

Re : [Résolu] Installation R version 3.5 sur ubuntu 16.04.5

Ok ça marche, merci déjà pour toute l'aide déjà fournie wink


Je débute Linux !
(Ubuntu 16.04.5 LTS)

"L'ouverture d'esprit n'a jamais fait de fracture au crâne"

Hors ligne

#44 Le 13/02/2019, à 15:45

xubu1957

Re : [Résolu] Installation R version 3.5 sur ubuntu 16.04.5

[HS]   

@cqfd93

Pour cette discussion > epson perfection v330

Si tu es disponible, tu pourrais raboter le sources.list ?

Merci d'avance. wink

[/HS]


Conseils pour les nouveaux demandeurs et pas qu'eux
Important : Pensez à passer vos sujets en [Résolu] lorsque ceux-ci le sont, au début du titre en cliquant sur Modifier sous le premier message, et un bref récapitulatif de la solution à la fin de celui-ci. Merci.                   Membre de Linux-Azur

Hors ligne

#45 Le 13/02/2019, à 15:59

cqfd93

Re : [Résolu] Installation R version 3.5 sur ubuntu 16.04.5

xubu1957 a écrit :

Je ne suis pas apte à t'aider plus pour ces logiciels !

Désolé. sad

Moi non plus, mais je vois : …et 1 non mis à jour. donc je dis :

sudo apt full-upgrade

smile


cqfd93

Hors ligne

#46 Le 13/02/2019, à 15:59

cqfd93

Re : [Résolu] Installation R version 3.5 sur ubuntu 16.04.5

xubu1957 a écrit :

[HS]   

@cqfd93

Pour cette discussion > epson perfection v330

Si tu es disponible, tu pourrais raboter le sources.list ?

Merci d'avance. wink

[/HS]

OK, je vais voir ça.

Il a l'air de vouloir abandonner Ubuntu, alors est-ce que ça vaut la peine de ce casser le c… la tête ?


cqfd93

Hors ligne

#47 Le 13/02/2019, à 16:31

xubu1957

Re : [Résolu] Installation R version 3.5 sur ubuntu 16.04.5

[HS]

Les imprimantes et les scanners, cela devient bien complexe ! hmm

                   [/HS]


Conseils pour les nouveaux demandeurs et pas qu'eux
Important : Pensez à passer vos sujets en [Résolu] lorsque ceux-ci le sont, au début du titre en cliquant sur Modifier sous le premier message, et un bref récapitulatif de la solution à la fin de celui-ci. Merci.                   Membre de Linux-Azur

Hors ligne

#48 Le 13/02/2019, à 16:33

cqfd93

Re : [Résolu] Installation R version 3.5 sur ubuntu 16.04.5

xubu1957 a écrit :

[HS]

Les imprimantes et les scanners, cela devient bien complexe ! hmm

                   [/HS]

Merci à Microsoft et à la majorité des constructeurs…


cqfd93

Hors ligne

#49 Le 13/02/2019, à 16:51

Skyroots

Re : [Résolu] Installation R version 3.5 sur ubuntu 16.04.5

(pourquoi faire simple quand on peut faire compliqué smile )


Je débute Linux !
(Ubuntu 16.04.5 LTS)

"L'ouverture d'esprit n'a jamais fait de fracture au crâne"

Hors ligne

#50 Le 13/02/2019, à 16:53

xubu1957

Re : [Résolu] Installation R version 3.5 sur ubuntu 16.04.5

C'est des histoires de gros sous.


Conseils pour les nouveaux demandeurs et pas qu'eux
Important : Pensez à passer vos sujets en [Résolu] lorsque ceux-ci le sont, au début du titre en cliquant sur Modifier sous le premier message, et un bref récapitulatif de la solution à la fin de celui-ci. Merci.                   Membre de Linux-Azur

Hors ligne