Installing software in your home directory/fr: Difference between revisions

From Alliance Doc
Jump to navigation Jump to search
(Created page with "Vous avez le droit d'installer des logiciels dans votre propre espace projet ou dans votre espace ''home'', par exemple pour * apporter vous-même des modifications au code *...")
(Created page with "'''Prenez connaissance des directives pour l'installation du logiciel.''' Il s'agit souvent des instructions décrites ci-après.")
Line 6: Line 6:
* évaluer un produit avant le temps alloué pour l'installation par notre équipe (24 à 48 heures ouvrables).
* évaluer un produit avant le temps alloué pour l'installation par notre équipe (24 à 48 heures ouvrables).


'''Read the installation instructions that accompany the software.''' These instructions often fall into one of the classes described below.
'''Prenez connaissance des directives pour l'installation du logiciel.''' Il s'agit souvent des instructions décrites ci-après.


== configure; make; make install ==
== configure; make; make install ==

Revision as of 16:08, 25 April 2017

Other languages:

Plusieurs logiciels utilisés par les chercheurs universitaires sont disponibles gratuitement sur Internet. Vous pouvez demander à Calcul Canada s'installer de tels logiciels que vous pourrez ensuite utiliser avec la commande module load (voir Utiliser les modules); pour ce faire, écrivez à support@calculcanada.ca en joignant l'adresse URL pour l'installation. Si les clauses de la licence et les exigences techniques le permettent, le logiciel sera habituellement disponible dans 24 à 48 heures ouvrables.

Vous avez le droit d'installer des logiciels dans votre propre espace projet ou dans votre espace home, par exemple pour

  • apporter vous-même des modifications au code
  • évaluer un produit avant le temps alloué pour l'installation par notre équipe (24 à 48 heures ouvrables).

Prenez connaissance des directives pour l'installation du logiciel. Il s'agit souvent des instructions décrites ci-après.

configure; make; make install

[name@server ~]$ ./configure
[name@server ~]$ make
[name@server ~]$ make install

is a very common instruction pattern. Variations include cmake . replacing ./configure, and sudo make install replacing make install.

Sometimes this will work exactly as prescribed, but sometimes it will fail at make install because the package expects to be able to write to /usr/local or some other shared area in the file system. It will always fail if sudo make install is attempted, because sudo is a request for "root" or administrator privileges. The usual solution is to supply a --prefix flag at the configure step, to direct the installation to go to the directory of your choice, e.g.:

Question.png
[name@server ~]$ ./configure --prefix=$PROJECT/some-package && make && make install

If other errors arise, contact support. For more information see Make, Autotools, and CMake.

apt-get and yum

If the software includes instructions to run apt-get or yum, it is unlikely that you will be able to install it using those instructions. Look for instructions that say "to build from source", or contact support for assistance.

Python, R, and Perl packages

Python, R, and Perl are languages with large libraries of extension packages, and package managers that can easily install almost any desired extension in your home directory. See the page for each language to find out if the package you're looking for is already available on our systems. If it is not, you should also find detailed guidance there on using that language's package manager to install it for yourself.