Sophie

Sophie

distrib > Mageia > 4 > i586 > by-pkgid > b38d2da330d1936e5ab1307c039c4941 > files > 98

octave-doc-3.6.4-3.mga4.noarch.rpm

<html lang="en">
<head>
<title>Administrating Packages - GNU Octave</title>
<meta http-equiv="Content-Type" content="text/html">
<meta name="description" content="GNU Octave">
<meta name="generator" content="makeinfo 4.13">
<link title="Top" rel="start" href="index.html#Top">
<link rel="up" href="Packages.html#Packages" title="Packages">
<link rel="prev" href="Using-Packages.html#Using-Packages" title="Using Packages">
<link rel="next" href="Creating-Packages.html#Creating-Packages" title="Creating Packages">
<link href="http://www.gnu.org/software/texinfo/" rel="generator-home" title="Texinfo Homepage">
<meta http-equiv="Content-Style-Type" content="text/css">
<style type="text/css"><!--
  pre.display { font-family:inherit }
  pre.format  { font-family:inherit }
  pre.smalldisplay { font-family:inherit; font-size:smaller }
  pre.smallformat  { font-family:inherit; font-size:smaller }
  pre.smallexample { font-size:smaller }
  pre.smalllisp    { font-size:smaller }
  span.sc    { font-variant:small-caps }
  span.roman { font-family:serif; font-weight:normal; } 
  span.sansserif { font-family:sans-serif; font-weight:normal; } 
--></style>
</head>
<body>
<div class="node">
<a name="Administrating-Packages"></a>
<p>
Next:&nbsp;<a rel="next" accesskey="n" href="Creating-Packages.html#Creating-Packages">Creating Packages</a>,
Previous:&nbsp;<a rel="previous" accesskey="p" href="Using-Packages.html#Using-Packages">Using Packages</a>,
Up:&nbsp;<a rel="up" accesskey="u" href="Packages.html#Packages">Packages</a>
<hr>
</div>

<h3 class="section">37.3 Administrating Packages</h3>

<p>On UNIX-like systems it is possible to make both per-user and
system-wide installations of a package.  If the user performing the
installation is <code>root</code> the packages will be installed in a
system-wide directory that defaults to
<samp><span class="file">OCTAVE_HOME/share/octave/packages/</span></samp>.  If the user is not
<code>root</code> the default installation directory is
<samp><span class="file">~/octave/</span></samp>.  Packages will be installed in a subdirectory of the
installation directory that will be named after the package.  It is
possible to change the installation directory by using the
<code>pkg prefix</code> command

<pre class="example">     pkg prefix new_installation_directory
</pre>
   <p class="noindent">The current installation directory can be retrieved by typing

<pre class="example">     current_installation_directory = pkg prefix
</pre>
   <p>To function properly the package manager needs to keep some
information about the installed packages.  For per-user packages this
information is by default stored in the file <samp><span class="file">~/.octave_packages</span></samp>
and for system-wide installations it is stored in
<samp><span class="file">OCTAVE_HOME/share/octave/octave_packages</span></samp>.  The path to the
per-user file can be changed with the <code>pkg local_list</code> command

<pre class="example">     pkg local_list /path/to/new_file
</pre>
   <p class="noindent">For system-wide installations this can be changed in the same way
using the <code>pkg global_list</code> command.  If these commands are
called without a new path, the current path will be returned.

   </body></html>