{"id":907,"date":"2020-11-08T19:36:04","date_gmt":"2020-11-08T18:36:04","guid":{"rendered":"https:\/\/itrop.ird.fr\/wordpress\/?page_id=907"},"modified":"2022-04-06T14:48:39","modified_gmt":"2022-04-06T12:48:39","slug":"trainings-2019-admin-hpc-module-1-software-installation","status":"publish","type":"page","link":"https:\/\/bioinfo.ird.fr\/index.php\/trainings-fr\/trainings-2019-admin-hpc-module-1\/trainings-2019-admin-hpc-module-1-software-installation\/","title":{"rendered":"Trainings 2019 &#8211; Admin HPC &#8211; module 1 &#8211; Software Installation"},"content":{"rendered":"<h2>Sotwares installation<\/h2>\n<table>\n<thead>\n<tr>\n<th style=\"text-align: left;\">Description<\/th>\n<th style=\"text-align: left;\">Ways to install softwares under Linux (Centos7)<\/th>\n<\/tr>\n<\/thead>\n<tbody>\n<tr>\n<td style=\"text-align: left;\">Related-course materials<\/td>\n<td style=\"text-align: left;\"><a href=\"https:\/\/itrop.ird.fr\/wordpress\/index.php\/trainings-2019-admin-hpc-module-1\/\">HPC Administration Module1<\/a><\/td>\n<\/tr>\n<tr>\n<td style=\"text-align: left;\">Authors<\/td>\n<td style=\"text-align: left;\">Ndomassi TANDO (ndomassi.tando@ird.fr)<\/td>\n<\/tr>\n<tr>\n<td style=\"text-align: left;\">Creation Date<\/td>\n<td style=\"text-align: left;\">23\/09\/2019<\/td>\n<\/tr>\n<tr>\n<td style=\"text-align: left;\">Last Modified Date<\/td>\n<td style=\"text-align: left;\">23\/09\/2019<\/td>\n<\/tr>\n<\/tbody>\n<\/table>\n<hr \/>\n<h3>Summary<\/h3>\n<p><!-- TOC depthFrom:2 depthTo:2 withLinks:1 updateOnSave:1 orderedList:0 --><\/p>\n<ul>\n<li><a href=\"#part-1\">RPM packages<\/a><\/li>\n<li><a href=\"#part-2\">Installation from sources<\/a><\/li>\n<li><a href=\"#part-3\">Installation of a python package<\/a><\/li>\n<li><a href=\"#part-4\">Installation via  Conda<\/a><\/li>\n<li><a href=\"#part-5\">Perl Modules installation<\/a><\/li>\n<li><a href=\"#part-6\">Essential system softwares<\/a><\/li>\n<li><a href=\"#links\">Links<\/a><\/li>\n<li><a href=\"#license\">License<\/a><\/li>\n<\/ul>\n<hr \/>\n<p><a name=\"part-1\"><\/a><\/p>\n<h2>RPM packages<\/h2>\n<p>Rpm are used for distribution such as Centos, Redhat or fedora.<\/p>\n<p>You can install them with  several commands:<\/p>\n<pre><code>$ rpm -ivh rpm_package.rpm<\/code><\/pre>\n<p>To use the command above, the dependencies of the package to install have to be installed first.<\/p>\n<p>To avoid that and if you have of the rpms of the deendencies , just use:<\/p>\n<pre><code>$ yum install rpm_package.rpm<\/code><\/pre>\n<hr \/>\n<p><a name=\"part-2\"><\/a><\/p>\n<h2>Installation from sources:<\/h2>\n<p>A lot of linux softwares have their sources available.<\/p>\n<p>It allows to compile the software to match with the server architecture.<\/p>\n<p>Usually, the sources are compressed into a tarball.<\/p>\n<p>You  first have to decompress the tarball with the command:<\/p>\n<pre><code>$ tar xvfz package.tar.gz<\/code><\/pre>\n<p>Into the source package, you should find a README.md or INSTALL.md file that explain to you how to install the software.<\/p>\n<p>Use the following lines to  compile the package:<\/p>\n<pre><code>$  cd package\/\n  $ .\/configure --prefix=\/PATH_WHERE_TO install it\n $ make                   # do the compilation\n $ make test             # check that the compilation is OK with a set of test files\n $  make install           # to install the binaries to  the precised path<\/code><\/pre>\n<hr \/>\n<p><a name=\"part-3\"><\/a><\/p>\n<h2>Installation of a python package:<\/h2>\n<p>We can use the command :<\/p>\n<pre><code>$ pip install python_package<\/code><\/pre>\n<p>From source, after decompressing the tarball:<\/p>\n<pre><code>$ python setup.py install<\/code><\/pre>\n<p>If you work with several versions of python or a cluster, you should use a virtual environment to install your python package.<\/p>\n<p>The virtual environnement encapsulates a python environment for each python packages avoiding interferences with the other:<\/p>\n<p>Create a folder for your python package in <code>\/usr\/local<\/code><\/p>\n<pre><code>$ mkdir \/usr\/local\/python_package-version<\/code><\/pre>\n<p>Create the virtual environment:<\/p>\n<pre><code>$ virtualenv venv<\/code><\/pre>\n<p>Activate the virtual environment to  install the python package:<\/p>\n<pre><code>$     source venv\/bin\/activate\n    pip install package or python setup.py install<\/code><\/pre>\n<p>Deactivate the environment:    <\/p>\n<pre><code>$ deactivate<\/code><\/pre>\n<hr \/>\n<p><a name=\"part-4\"><\/a><\/p>\n<h2>Installation via  Conda:<\/h2>\n<p>URL: <a href=\"https:\/\/conda.io\/docs\/\">https:\/\/conda.io\/docs\/<\/a><\/p>\n<p>Conda quickly installs, runs and updates packages and their dependencies. Conda easily creates, saves, loads and switches between environments on your local computer. It was created for Python programs, but it can package and distribute software for any language.<\/p>\n<p>Install conda running the installer:<\/p>\n<pre><code>$ bash Miniconda3-latest-Linux-x86_64.sh<\/code><\/pre>\n<p>Once conda installed, you can create a new environment and install a package with the command:<\/p>\n<pre><code>$ conda create -n software software<\/code><\/pre>\n<p>To activate a environment:<\/p>\n<pre><code>$ source activate myenv<\/code><\/pre>\n<p>To deactivate a environment:<\/p>\n<pre><code>$ source deactivate<\/code><\/pre>\n<hr \/>\n<p><a name=\"part-5\"><\/a><\/p>\n<h2>Perl Modules installation:<\/h2>\n<p>Use the following commands:<\/p>\n<pre><code>$ perl \u2013MCPAN \u2013e shell  \n                 &gt; install &lt;Module&gt;[::&lt;Submodule&gt;]<\/code><\/pre>\n<p>or from the source:<\/p>\n<pre><code>$ perl Makefile.PL PREFIX= &lt;INSTALL_PERL_PATH&gt;\n$ make\n$ make test\n$ make install<\/code><\/pre>\n<hr \/>\n<p><a name=\"part-6\"><\/a><\/p>\n<h2>Essential system softwares:<\/h2>\n<h3>Python:<\/h3>\n<p>Python is a programming language<\/p>\n<p>URL : <a href=\"https:\/\/www.python.org\/\">https:\/\/www.python.org\/<\/a><\/p>\n<h3>Installation :<\/h3>\n<pre><code>ncurses-devel sqlite-devel readline-devel tk-devel gdbm-devel db4-devel \n      libpcap-devel xz-devel\n $ wget  https:\/\/www.python.org\/ftp\/python\/3.7.1\/Python-3.7.1.tar.xz\n $ tar xf Python-3.7.1.tar.xz\n $ cd Python-3.7.1\n $ .\/configure --prefix=\/usr\/local\/python-3.7.1 --enable-shared LDFLAGS=&quot;-Wl,-rpath \/usr\/local\/python-3.7.1\/lib&quot;\n $ make\n $ make altinstall<\/code><\/pre>\n<p>Add <code>\/usr\/local\/python-3.7.1<\/code> to the path :<\/p>\n<pre><code>$ echo  &#039;export PATH=$PATH:\/usr\/local\/python-3.7.1\/bin&#039; &gt;&gt;\/etc\/profile\n$ echo  &#039;export LD_LIBRARY_PATH=$LD_LIBRARY_PATH:\/usr\/local\/python-3.7.1\/lib&#039; &gt;&gt;\/etc\/profile\n$ echo  &#039;export PYTHONPATH=\/usr\/local\/python-3.7.1\/bin&#039; &gt;&gt;\/etc\/profile\n$ source \/etc\/profile<\/code><\/pre>\n<h3>Usage :<\/h3>\n<pre><code>$ python3 + arguments<\/code><\/pre>\n<h3>Perl:<\/h3>\n<p>Perl 5 is a highly capable, feature-rich programming language with over 30 years of development<\/p>\n<p>URL : <a href=\"https:\/\/www.perl.org\/about.html\">https:\/\/www.perl.org\/about.html<\/a><\/p>\n<h4>Installation :<\/h4>\n<pre><code>$ wget  https:\/\/www.cpan.org\/src\/5.0\/perl-5.28.1.tar.gz\n$ tar xvfz perl-5.28.1.tar.gz\n$ cd perl-5.28.1\n$ .\/configure -des -Dprefix=\/usr\/local\/perl-5.28.1\n$ make test\n$ make install<\/code><\/pre>\n<p>Add <code>\/usr\/local\/perl-5.28.1<\/code> to the path :<\/p>\n<pre><code>$ echo  &#039;export PATH=$PATH:\/usr\/local\/perl-5.28.1\/bin&#039; &gt;&gt;\/etc\/profile\n$ echo  &#039;export PERL5LIB=$PERL5LIB:\/usr\/local\/perl-5.28.1\/lib\/perl5&#039; &gt;&gt;\/etc\/profile\n$ source \/etc\/profile{<\/code><\/pre>\n<h4>Usage :<\/h4>\n<pre><code>$ perl + scripts<\/code><\/pre>\n<h3>Perlbrew  (optional):<\/h3>\n<p>perlbrew is an admin-free perl installation management tool.<\/p>\n<p>It is a tool to manage multiple perl installations.<\/p>\n<p>URL : <a href=\"https:\/\/perlbrew.pl\/\">https:\/\/perlbrew.pl\/<\/a><\/p>\n<h4>Installation :<\/h4>\n<pre><code>$ export PERLBREW_ROOT=\/usr\/local\/perlbrew-0.84\n      \\wget -O - https:\/\/install.perlbrew.pl | bash<\/code><\/pre>\n<p>Add <code>\/usr\/local\/perl-5.28.1<\/code> to the path :<\/p>\n<pre><code>$ echo  &#039;export PATH=$PATH:\/usr\/local\/perlbrew-0.84&#039; &gt;&gt;\/etc\/profile<\/code><\/pre>\n<pre><code>   source \/etc\/profile<\/code><\/pre>\n<h4>Usage :<\/h4>\n<pre><code># Initialize\n           $ perlbrew init\n\n         # See what is available\n           $ perlbrew available\n\n        #  Install some Perls\n           $ perlbrew install 5.18.2\n           $ perlbrew install perl-5.8.1\n           $ perlbrew install perl-5.19.9\n\n        # See what were installed\n           $ perlbrew list\n\n        # Swith to an installation and set it as default\n           $ perlbrew switch perl-5.18.2\n\n        # Temporarily use another version only in current shell.\n           $ perlbrew use perl-5.8.1\n           $ perl -v\n\n        # Or turn it off completely. Useful when you messed up too deep.\n        # Or want to go back to the system Perl.\n           $ perlbrew off\n\n        # Use &#039;switch&#039; command to turn it back on.\n           $ perlbrew switch perl-5.12.2\n\n        # Exec something with all perlbrew-ed perls\n           $ perlbrew exec -- perl -E &#039;say $]&#039;<\/code><\/pre>\n<h3>java:<\/h3>\n<p>Java is a  programming language web oriented.<\/p>\n<p>URL : <a href=\"https:\/\/www.java.com\/fr\/download\/linux_manual.jsp\">https:\/\/www.java.com\/fr\/download\/linux_manual.jsp<\/a><\/p>\n<h4>Installation :<\/h4>\n<p>Download the tarball form the interface (jre ou  jdk)<\/p>\n<pre><code>$ cd \/usr\/java\n$ tar zxvf jre-8u191-linux-x64.tar.gz<\/code><\/pre>\n<p>Add <code>\/usr\/java\/jre-8u191\/<\/code>  to the path :<\/p>\n<pre><code>$ echo  &#039;export PATH=$PATH:\/usr\/java\/jre-8u191\/bin&#039; &gt;&gt;\/etc\/profile\n$ echo  &#039;export PATH=$PATH:\/usr\/java\/jre-8u191\/lib&#039; &gt;&gt;\/etc\/profile\n$ source \/etc\/profile<\/code><\/pre>\n<h4>Usage :<\/h4>\n<pre><code>$ java -jar + file.jar<\/code><\/pre>\n<h3>gcc:<\/h3>\n<p>The GNU Compiler Collection includes front ends for C, C++, Objective-C, Fortran, Ada, Go, and D, as well as libraries for these languages (libstdc++,...). GCC was originally written as the compiler for the GNU operating system.<\/p>\n<p>URL : <a href=\"http:\/\/gcc.gnu.org\/install\/\">http:\/\/gcc.gnu.org\/install\/<\/a><\/p>\n<h4>Installation :<\/h4>\n<pre><code>$ wget  ftp:\/\/ftp.lip6.fr\/pub\/gcc\/releases\/gcc-7.4.0\/gcc-7.4.0.tar.gz\n $ tar zxvf gcc-7.4.0.tar.gz\n $ cd gcc-7.4.0\n $ mkdir build\n $ cd build\n $ ..\/configure --prefix=\/usr\/local\/gcc-7.4.0\n $ make --disable-werror\n $ make install<\/code><\/pre>\n<p>Add <code>\/usr\/local\/gcc-7.4.0<\/code> to the path :<\/p>\n<pre><code>$ echo  &#039;export PATH=$PATH\/usr\/local\/gcc-7.4.0\/bin&#039; &gt;&gt;\/etc\/profile\n$ echo  &#039;export LD_LIBRARY_PATH=$LD_LIBRARY_PATH:\/usr\/local\/gcc-7.4.0\/lib&#039; &gt;&gt;\/etc\/profile\n$ source \/etc\/profile<\/code><\/pre>\n<h3>Bioperl:<\/h3>\n<h4>Installation<\/h4>\n<pre><code>$ cpan\n      cpan&gt;d \/bioperl\/<\/code><\/pre>\n<p>Choose the most recent version:<\/p>\n<pre><code>cpan&gt;install C\/CJ\/CJFIELDS\/BioPerl-1.007001.tar.gz<\/code><\/pre>\n<hr \/>\n<h3>Links<\/h3>\n<p><a name=\"links\"><\/a><\/p>\n<ul>\n<li>Related courses : <a href=\"https:\/\/itrop.ird.fr\/wordpress\/index.php\/trainings-2019-admin-hpc-module-1\/\">HPC Trainings<\/a><\/li>\n<\/ul>\n<hr \/>\n<h3>License<\/h3>\n<p><a name=\"license\"><\/a><\/p>\n<div>\nThe resource material is licensed under the Creative Commons Attribution 4.0 International License (<a href=\"http:\/\/creativecommons.org\/licenses\/by-nc-sa\/4.0\/\">here<\/a>).<br \/>\n<center><img decoding=\"async\" width=\"25%\" class=\"img-responsive\" src=\"http:\/\/creativecommons.org.nz\/wp-content\/uploads\/2012\/05\/by-nc-sa1.png\"\/><br \/>\n<\/center>\n<\/div>\n","protected":false},"excerpt":{"rendered":"<p>Sotwares installation Description Ways to install softwares under Linux (Centos7) Related-course materials HPC Administration Module1 Authors Ndomassi TANDO (ndomassi.tando@ird.fr) Creation&hellip; <br \/> <a class=\"read-more\" href=\"https:\/\/bioinfo.ird.fr\/index.php\/trainings-fr\/trainings-2019-admin-hpc-module-1\/trainings-2019-admin-hpc-module-1-software-installation\/\">Lire la suite<\/a><\/p>\n","protected":false},"author":1,"featured_media":0,"parent":893,"menu_order":0,"comment_status":"closed","ping_status":"closed","template":"","meta":{"inline_featured_image":false,"footnotes":""},"class_list":["post-907","page","type-page","status-publish","hentry"],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v24.2 - https:\/\/yoast.com\/wordpress\/plugins\/seo\/ -->\n<title>Trainings 2019 - Admin HPC - module 1 - Software Installation - itrop<\/title>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/bioinfo.ird.fr\/index.php\/trainings-fr\/trainings-2019-admin-hpc-module-1\/trainings-2019-admin-hpc-module-1-software-installation\/\" \/>\n<meta property=\"og:locale\" content=\"fr_FR\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Trainings 2019 - Admin HPC - module 1 - Software Installation - itrop\" \/>\n<meta property=\"og:description\" content=\"Sotwares installation Description Ways to install softwares under Linux (Centos7) Related-course materials HPC Administration Module1 Authors Ndomassi TANDO (ndomassi.tando@ird.fr) Creation&hellip; Lire la suite\" \/>\n<meta property=\"og:url\" content=\"https:\/\/bioinfo.ird.fr\/index.php\/trainings-fr\/trainings-2019-admin-hpc-module-1\/trainings-2019-admin-hpc-module-1-software-installation\/\" \/>\n<meta property=\"og:site_name\" content=\"itrop\" \/>\n<meta property=\"article:modified_time\" content=\"2022-04-06T12:48:39+00:00\" \/>\n<meta property=\"og:image\" content=\"http:\/\/creativecommons.org.nz\/wp-content\/uploads\/2012\/05\/by-nc-sa1.png\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:site\" content=\"@ItropBioinfo\" \/>\n<meta name=\"twitter:label1\" content=\"Dur\u00e9e de lecture estim\u00e9e\" \/>\n\t<meta name=\"twitter:data1\" content=\"5 minutes\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\/\/schema.org\",\"@graph\":[{\"@type\":\"WebPage\",\"@id\":\"https:\/\/bioinfo.ird.fr\/index.php\/trainings-fr\/trainings-2019-admin-hpc-module-1\/trainings-2019-admin-hpc-module-1-software-installation\/\",\"url\":\"https:\/\/bioinfo.ird.fr\/index.php\/trainings-fr\/trainings-2019-admin-hpc-module-1\/trainings-2019-admin-hpc-module-1-software-installation\/\",\"name\":\"Trainings 2019 - Admin HPC - module 1 - Software Installation - itrop\",\"isPartOf\":{\"@id\":\"https:\/\/bioinfo.ird.fr\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\/\/bioinfo.ird.fr\/index.php\/trainings-fr\/trainings-2019-admin-hpc-module-1\/trainings-2019-admin-hpc-module-1-software-installation\/#primaryimage\"},\"image\":{\"@id\":\"https:\/\/bioinfo.ird.fr\/index.php\/trainings-fr\/trainings-2019-admin-hpc-module-1\/trainings-2019-admin-hpc-module-1-software-installation\/#primaryimage\"},\"thumbnailUrl\":\"http:\/\/creativecommons.org.nz\/wp-content\/uploads\/2012\/05\/by-nc-sa1.png\",\"datePublished\":\"2020-11-08T18:36:04+00:00\",\"dateModified\":\"2022-04-06T12:48:39+00:00\",\"breadcrumb\":{\"@id\":\"https:\/\/bioinfo.ird.fr\/index.php\/trainings-fr\/trainings-2019-admin-hpc-module-1\/trainings-2019-admin-hpc-module-1-software-installation\/#breadcrumb\"},\"inLanguage\":\"fr-FR\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/bioinfo.ird.fr\/index.php\/trainings-fr\/trainings-2019-admin-hpc-module-1\/trainings-2019-admin-hpc-module-1-software-installation\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"fr-FR\",\"@id\":\"https:\/\/bioinfo.ird.fr\/index.php\/trainings-fr\/trainings-2019-admin-hpc-module-1\/trainings-2019-admin-hpc-module-1-software-installation\/#primaryimage\",\"url\":\"http:\/\/creativecommons.org.nz\/wp-content\/uploads\/2012\/05\/by-nc-sa1.png\",\"contentUrl\":\"http:\/\/creativecommons.org.nz\/wp-content\/uploads\/2012\/05\/by-nc-sa1.png\"},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/bioinfo.ird.fr\/index.php\/trainings-fr\/trainings-2019-admin-hpc-module-1\/trainings-2019-admin-hpc-module-1-software-installation\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Accueil\",\"item\":\"https:\/\/bioinfo.ird.fr\/index.php\/en\/front-page-2\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Trainings &#8211; FR\",\"item\":\"https:\/\/bioinfo.ird.fr\/index.php\/trainings-fr\/\"},{\"@type\":\"ListItem\",\"position\":3,\"name\":\"Trainings 2019 &#8211; Admin HPC &#8211; module 1\",\"item\":\"https:\/\/bioinfo.ird.fr\/index.php\/trainings-fr\/trainings-2019-admin-hpc-module-1\/\"},{\"@type\":\"ListItem\",\"position\":4,\"name\":\"Trainings 2019 &#8211; Admin HPC &#8211; module 1 &#8211; Software Installation\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\/\/bioinfo.ird.fr\/#website\",\"url\":\"https:\/\/bioinfo.ird.fr\/\",\"name\":\"itrop\",\"description\":\"\",\"publisher\":{\"@id\":\"https:\/\/bioinfo.ird.fr\/#organization\"},\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\/\/bioinfo.ird.fr\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"fr-FR\"},{\"@type\":\"Organization\",\"@id\":\"https:\/\/bioinfo.ird.fr\/#organization\",\"name\":\"i-Trop\",\"url\":\"https:\/\/bioinfo.ird.fr\/\",\"logo\":{\"@type\":\"ImageObject\",\"inLanguage\":\"fr-FR\",\"@id\":\"https:\/\/bioinfo.ird.fr\/#\/schema\/logo\/image\/\",\"url\":\"https:\/\/bioinfo.ird.fr\/wp-content\/uploads\/2021\/10\/i-tropTwt5.png\",\"contentUrl\":\"https:\/\/bioinfo.ird.fr\/wp-content\/uploads\/2021\/10\/i-tropTwt5.png\",\"width\":1356,\"height\":1356,\"caption\":\"i-Trop\"},\"image\":{\"@id\":\"https:\/\/bioinfo.ird.fr\/#\/schema\/logo\/image\/\"},\"sameAs\":[\"https:\/\/x.com\/ItropBioinfo\"]}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"Trainings 2019 - Admin HPC - module 1 - Software Installation - itrop","robots":{"index":"index","follow":"follow","max-snippet":"max-snippet:-1","max-image-preview":"max-image-preview:large","max-video-preview":"max-video-preview:-1"},"canonical":"https:\/\/bioinfo.ird.fr\/index.php\/trainings-fr\/trainings-2019-admin-hpc-module-1\/trainings-2019-admin-hpc-module-1-software-installation\/","og_locale":"fr_FR","og_type":"article","og_title":"Trainings 2019 - Admin HPC - module 1 - Software Installation - itrop","og_description":"Sotwares installation Description Ways to install softwares under Linux (Centos7) Related-course materials HPC Administration Module1 Authors Ndomassi TANDO (ndomassi.tando@ird.fr) Creation&hellip; Lire la suite","og_url":"https:\/\/bioinfo.ird.fr\/index.php\/trainings-fr\/trainings-2019-admin-hpc-module-1\/trainings-2019-admin-hpc-module-1-software-installation\/","og_site_name":"itrop","article_modified_time":"2022-04-06T12:48:39+00:00","og_image":[{"url":"http:\/\/creativecommons.org.nz\/wp-content\/uploads\/2012\/05\/by-nc-sa1.png","type":"","width":"","height":""}],"twitter_card":"summary_large_image","twitter_site":"@ItropBioinfo","twitter_misc":{"Dur\u00e9e de lecture estim\u00e9e":"5 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"WebPage","@id":"https:\/\/bioinfo.ird.fr\/index.php\/trainings-fr\/trainings-2019-admin-hpc-module-1\/trainings-2019-admin-hpc-module-1-software-installation\/","url":"https:\/\/bioinfo.ird.fr\/index.php\/trainings-fr\/trainings-2019-admin-hpc-module-1\/trainings-2019-admin-hpc-module-1-software-installation\/","name":"Trainings 2019 - Admin HPC - module 1 - Software Installation - itrop","isPartOf":{"@id":"https:\/\/bioinfo.ird.fr\/#website"},"primaryImageOfPage":{"@id":"https:\/\/bioinfo.ird.fr\/index.php\/trainings-fr\/trainings-2019-admin-hpc-module-1\/trainings-2019-admin-hpc-module-1-software-installation\/#primaryimage"},"image":{"@id":"https:\/\/bioinfo.ird.fr\/index.php\/trainings-fr\/trainings-2019-admin-hpc-module-1\/trainings-2019-admin-hpc-module-1-software-installation\/#primaryimage"},"thumbnailUrl":"http:\/\/creativecommons.org.nz\/wp-content\/uploads\/2012\/05\/by-nc-sa1.png","datePublished":"2020-11-08T18:36:04+00:00","dateModified":"2022-04-06T12:48:39+00:00","breadcrumb":{"@id":"https:\/\/bioinfo.ird.fr\/index.php\/trainings-fr\/trainings-2019-admin-hpc-module-1\/trainings-2019-admin-hpc-module-1-software-installation\/#breadcrumb"},"inLanguage":"fr-FR","potentialAction":[{"@type":"ReadAction","target":["https:\/\/bioinfo.ird.fr\/index.php\/trainings-fr\/trainings-2019-admin-hpc-module-1\/trainings-2019-admin-hpc-module-1-software-installation\/"]}]},{"@type":"ImageObject","inLanguage":"fr-FR","@id":"https:\/\/bioinfo.ird.fr\/index.php\/trainings-fr\/trainings-2019-admin-hpc-module-1\/trainings-2019-admin-hpc-module-1-software-installation\/#primaryimage","url":"http:\/\/creativecommons.org.nz\/wp-content\/uploads\/2012\/05\/by-nc-sa1.png","contentUrl":"http:\/\/creativecommons.org.nz\/wp-content\/uploads\/2012\/05\/by-nc-sa1.png"},{"@type":"BreadcrumbList","@id":"https:\/\/bioinfo.ird.fr\/index.php\/trainings-fr\/trainings-2019-admin-hpc-module-1\/trainings-2019-admin-hpc-module-1-software-installation\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Accueil","item":"https:\/\/bioinfo.ird.fr\/index.php\/en\/front-page-2\/"},{"@type":"ListItem","position":2,"name":"Trainings &#8211; FR","item":"https:\/\/bioinfo.ird.fr\/index.php\/trainings-fr\/"},{"@type":"ListItem","position":3,"name":"Trainings 2019 &#8211; Admin HPC &#8211; module 1","item":"https:\/\/bioinfo.ird.fr\/index.php\/trainings-fr\/trainings-2019-admin-hpc-module-1\/"},{"@type":"ListItem","position":4,"name":"Trainings 2019 &#8211; Admin HPC &#8211; module 1 &#8211; Software Installation"}]},{"@type":"WebSite","@id":"https:\/\/bioinfo.ird.fr\/#website","url":"https:\/\/bioinfo.ird.fr\/","name":"itrop","description":"","publisher":{"@id":"https:\/\/bioinfo.ird.fr\/#organization"},"potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/bioinfo.ird.fr\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"fr-FR"},{"@type":"Organization","@id":"https:\/\/bioinfo.ird.fr\/#organization","name":"i-Trop","url":"https:\/\/bioinfo.ird.fr\/","logo":{"@type":"ImageObject","inLanguage":"fr-FR","@id":"https:\/\/bioinfo.ird.fr\/#\/schema\/logo\/image\/","url":"https:\/\/bioinfo.ird.fr\/wp-content\/uploads\/2021\/10\/i-tropTwt5.png","contentUrl":"https:\/\/bioinfo.ird.fr\/wp-content\/uploads\/2021\/10\/i-tropTwt5.png","width":1356,"height":1356,"caption":"i-Trop"},"image":{"@id":"https:\/\/bioinfo.ird.fr\/#\/schema\/logo\/image\/"},"sameAs":["https:\/\/x.com\/ItropBioinfo"]}]}},"_links":{"self":[{"href":"https:\/\/bioinfo.ird.fr\/index.php\/wp-json\/wp\/v2\/pages\/907","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/bioinfo.ird.fr\/index.php\/wp-json\/wp\/v2\/pages"}],"about":[{"href":"https:\/\/bioinfo.ird.fr\/index.php\/wp-json\/wp\/v2\/types\/page"}],"author":[{"embeddable":true,"href":"https:\/\/bioinfo.ird.fr\/index.php\/wp-json\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/bioinfo.ird.fr\/index.php\/wp-json\/wp\/v2\/comments?post=907"}],"version-history":[{"count":1,"href":"https:\/\/bioinfo.ird.fr\/index.php\/wp-json\/wp\/v2\/pages\/907\/revisions"}],"predecessor-version":[{"id":908,"href":"https:\/\/bioinfo.ird.fr\/index.php\/wp-json\/wp\/v2\/pages\/907\/revisions\/908"}],"up":[{"embeddable":true,"href":"https:\/\/bioinfo.ird.fr\/index.php\/wp-json\/wp\/v2\/pages\/893"}],"wp:attachment":[{"href":"https:\/\/bioinfo.ird.fr\/index.php\/wp-json\/wp\/v2\/media?parent=907"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}