This file is indexed.

/usr/share/doc/python-simpy-doc/html/Manuals/INSTALLATION.html is in python-simpy-doc 2.3.1-1.

This file is owned by root:root, with mode 0o644.

The actual contents of the file can be viewed below.

  1
  2
  3
  4
  5
  6
  7
  8
  9
 10
 11
 12
 13
 14
 15
 16
 17
 18
 19
 20
 21
 22
 23
 24
 25
 26
 27
 28
 29
 30
 31
 32
 33
 34
 35
 36
 37
 38
 39
 40
 41
 42
 43
 44
 45
 46
 47
 48
 49
 50
 51
 52
 53
 54
 55
 56
 57
 58
 59
 60
 61
 62
 63
 64
 65
 66
 67
 68
 69
 70
 71
 72
 73
 74
 75
 76
 77
 78
 79
 80
 81
 82
 83
 84
 85
 86
 87
 88
 89
 90
 91
 92
 93
 94
 95
 96
 97
 98
 99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
  "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">


<html xmlns="http://www.w3.org/1999/xhtml">
  <head>
    <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
    
    <title>Installation &mdash; SimPy 2.3.1 documentation</title>
    
    <link rel="stylesheet" href="../_static/default.css" type="text/css" />
    <link rel="stylesheet" href="../_static/pygments.css" type="text/css" />
    
    <script type="text/javascript">
      var DOCUMENTATION_OPTIONS = {
        URL_ROOT:    '../',
        VERSION:     '2.3.1',
        COLLAPSE_INDEX: false,
        FILE_SUFFIX: '.html',
        HAS_SOURCE:  true
      };
    </script>
    <script type="text/javascript" src="../_static/jquery.js"></script>
    <script type="text/javascript" src="../_static/underscore.js"></script>
    <script type="text/javascript" src="../_static/doctools.js"></script>
    <link rel="top" title="SimPy 2.3.1 documentation" href="../index.html" />
    <link rel="up" title="Getting Started" href="../Getting_Started.html" />
    <link rel="next" title="Contents of This SimPy Distribution" href="DISTRIBUTION_CONTENTS.html" />
    <link rel="prev" title="Getting Started" href="../Getting_Started.html" /> 
  </head>
  <body>
    <div class="related">
      <h3>Navigation</h3>
      <ul>
        <li class="right" style="margin-right: 10px">
          <a href="../genindex.html" title="General Index"
             accesskey="I">index</a></li>
        <li class="right" >
          <a href="DISTRIBUTION_CONTENTS.html" title="Contents of This SimPy Distribution"
             accesskey="N">next</a> |</li>
        <li class="right" >
          <a href="../Getting_Started.html" title="Getting Started"
             accesskey="P">previous</a> |</li>
        <li><a href="../index.html">SimPy 2.3.1 documentation</a> &raquo;</li>
          <li><a href="../Getting_Started.html" accesskey="U">Getting Started</a> &raquo;</li> 
      </ul>
    </div>  

    <div class="document">
      <div class="documentwrapper">
        <div class="bodywrapper">
          <div class="body">
            
  <div class="section" id="installation">
<h1>Installation<a class="headerlink" href="#installation" title="Permalink to this headline"></a></h1>
<p>This file describes the installation of SimPy 2.3.1.</p>
<ol class="arabic">
<li><p class="first">Check that you have Python 2.3 or above. Python 3 is not yet supported, but
we are working on it. If necessary, download Python from <a class="reference external" href="http://python.org">http://python.org</a>
and install it.</p>
</li>
<li><p class="first">You can install SimPy easily via <a class="reference external" href="http://pypi.python.org/pypi/pip">PIP</a>
(or <tt class="docutils literal"><span class="pre">easy_install</span></tt>):</p>
<div class="highlight-python"><pre>$ pip install SimPy
$ # or:
$ easy_install SimPy</pre>
</div>
<p>If SimPy is already installed, use the <em>-U</em> option for pip/easy_install to
upgrade:</p>
<div class="highlight-python"><pre>$ pip install -U SimPy</pre>
</div>
<p>Remember, on Linux/MacOS/Unix you may need <em>root</em> privileges to install
SimPy. This also applies to the installing SimPy manually as described
below.</p>
</li>
<li><p class="first">To manually install a SimPy tarball, or to execute the examples, download
and unpack the SimPy archive into a folder (using option &#8220;Use folder names&#8221;
in WinZip, &#8220;Re-create folders&#8221; in Linux Archive Manager, or similar option
in your unpacker). This will create a SimPy-2.3.1 folder with all source
code and documentation.</p>
<p>Open a terminal, <em>cd</em> to the SimPy folder and execute <em>setup.py</em> or
<em>easy_install .</em> or <em>pip install .</em>:</p>
<div class="highlight-python"><pre>$ cd where/you/put/simpy/SimPy-x.y
$ python setup.py install
$ # or
$ easy_install .
$ # or
$ pip install .</pre>
</div>
<p>If you do not have permissions to perform the installation as root, you can
install SimPy into a non-standard folder:</p>
<div class="highlight-python"><pre>$ cd where/you/put/simpy/SimPy-x.y
$ python setup.py install --home &lt;dir&gt;</pre>
</div>
</li>
<li><p class="first">Run one or more of the programs under <em>docs/examples</em> to see
whether Python finds the SimPy module. If you get an error message
like <em>ImportError: No module named SimPy</em>, move the SimPy folder
into a directory which you know to be on the Python module search
path (like /Lib/site-packages).</p>
</li>
<li><p class="first">The tutorial and manuals are in the <em>docs/html</em> folder. Many users have
commented that the Bank tutorials are valuable in getting users started on
building their own simple models. Even a few lines of Python and SimPy can
model significant real systems.</p>
</li>
</ol>
<p>For more help, contact the <a class="reference external" href="mailto:simpy-users&#37;&#52;&#48;lists&#46;sourceforge&#46;net">SimPy-Users mailing list</a>. SimPy users are pretty helpful.</p>
<p>Enjoy simulation programming in SimPy!</p>
</div>


          </div>
        </div>
      </div>
      <div class="sphinxsidebar">
        <div class="sphinxsidebarwrapper">
            <p class="logo"><a href="../index.html">
              <img class="logo" src="../_static/sm_SimPy_Logo.png" alt="Logo"/>
            </a></p>
  <h4>Previous topic</h4>
  <p class="topless"><a href="../Getting_Started.html"
                        title="previous chapter">Getting Started</a></p>
  <h4>Next topic</h4>
  <p class="topless"><a href="DISTRIBUTION_CONTENTS.html"
                        title="next chapter">Contents of This SimPy Distribution</a></p>
  <h3>This Page</h3>
  <ul class="this-page-menu">
    <li><a href="../_sources/Manuals/INSTALLATION.txt"
           rel="nofollow">Show Source</a></li>
  </ul>
<div id="searchbox" style="display: none">
  <h3>Quick search</h3>
    <form class="search" action="../search.html" method="get">
      <input type="text" name="q" />
      <input type="submit" value="Go" />
      <input type="hidden" name="check_keywords" value="yes" />
      <input type="hidden" name="area" value="default" />
    </form>
    <p class="searchtip" style="font-size: 90%">
    Enter search terms or a module, class or function name.
    </p>
</div>
<script type="text/javascript">$('#searchbox').show(0);</script>
        </div>
      </div>
      <div class="clearer"></div>
    </div>
    <div class="related">
      <h3>Navigation</h3>
      <ul>
        <li class="right" style="margin-right: 10px">
          <a href="../genindex.html" title="General Index"
             >index</a></li>
        <li class="right" >
          <a href="DISTRIBUTION_CONTENTS.html" title="Contents of This SimPy Distribution"
             >next</a> |</li>
        <li class="right" >
          <a href="../Getting_Started.html" title="Getting Started"
             >previous</a> |</li>
        <li><a href="../index.html">SimPy 2.3.1 documentation</a> &raquo;</li>
          <li><a href="../Getting_Started.html" >Getting Started</a> &raquo;</li> 
      </ul>
    </div>
    <div class="footer">
        &copy; Copyright 2002-2011, Klaus Müller, Tony Vignaux, Ontje Lünsdorf, Stefan Scherfke.
      Created using <a href="http://sphinx.pocoo.org/">Sphinx</a> 1.1.3.
    </div>
  </body>
</html>