File manager - Edit - /usr/share/doc/python3-pygments/html/download.html
Back
<!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="X-UA-Compatible" content="IE=Edge" /> <meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> <title>Download and installation — Pygments 2.2.0 documentation</title> <link rel="stylesheet" href="_static/pygments14.css" type="text/css" /> <link rel="stylesheet" href="_static/pygments.css" type="text/css" /> <script type="text/javascript" id="documentation_options" data-url_root="./" src="_static/documentation_options.js"></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="shortcut icon" href="_static/favicon.ico"/> <link rel="index" title="Index" href="genindex.html" /> <link rel="search" title="Search" href="search.html" /> <link rel="next" title="Introduction and Quickstart" href="docs/quickstart.html" /> <link rel="prev" title="Pygments documentation" href="docs/index.html" /> <link href='http://fonts.googleapis.com/css?family=PT+Sans:300,400,700' rel='stylesheet' type='text/css'> <style type="text/css"> table.right { float: right; margin-left: 20px; } table.right td { border: 1px solid #ccc; } </style> <script type="text/javascript"> // intelligent scrolling of the sidebar content $(window).scroll(function() { var sb = $('.sphinxsidebarwrapper'); var win = $(window); var sbh = sb.height(); var offset = $('.sphinxsidebar').position()['top']; var wintop = win.scrollTop(); var winbot = wintop + win.innerHeight(); var curtop = sb.position()['top']; var curbot = curtop + sbh; // does sidebar fit in window? if (sbh < win.innerHeight()) { // yes: easy case -- always keep at the top sb.css('top', $u.min([$u.max([0, wintop - offset - 10]), $(document).height() - sbh - 200])); } else { // no: only scroll if top/bottom edge of sidebar is at // top/bottom edge of window if (curtop > wintop && curbot > winbot) { sb.css('top', $u.max([wintop - offset - 10, 0])); } else if (curtop < wintop && curbot < winbot) { sb.css('top', $u.min([winbot - sbh - offset - 20, $(document).height() - sbh - 200])); } } }); </script> </head><body> <div class="outerwrapper"> <div class="pageheader"> <ul> <li><a href="index.html">Home</a></li> <li><a href="languages.html">Languages</a></li> <li><a href="faq.html">FAQ</a></li> <li><a href="#">Get it</a></li> <li><a href="docs/index.html">Docs</a></li> </ul> <div> <a href="index.html"> <img src="_static/logo.png" alt="Pygments logo" /> </a> </div> </div> <div class="sphinxsidebar" role="navigation" aria-label="main navigation"> <div class="sphinxsidebarwrapper"> <h3><a href="index.html">Table Of Contents</a></h3> <ul> <li><a class="reference internal" href="#">Download and installation</a><ul> <li><a class="reference internal" href="#packaged-versions">Packaged versions</a></li> <li><a class="reference internal" href="#development-sources">Development sources</a></li> </ul> </li> </ul> <h4>Previous topic</h4> <p class="topless"><a href="docs/index.html" title="previous chapter">Pygments documentation</a></p> <h4>Next topic</h4> <p class="topless"><a href="docs/quickstart.html" title="next chapter">Introduction and Quickstart</a></p> <div role="note" aria-label="source link"> <h3>This Page</h3> <ul class="this-page-menu"> <li><a href="_sources/download.rst.txt" rel="nofollow">Show Source</a></li> </ul> </div> <div id="searchbox" style="display: none" role="search"> <h3>Quick search</h3> <div class="searchformwrapper"> <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> </div> </div> <script type="text/javascript">$('#searchbox').show(0);</script> </div> </div> <div class="document"> <div class="documentwrapper"> <div class="bodywrapper"> <div class="body" role="main"> <div class="section" id="download-and-installation"> <h1>Download and installation<a class="headerlink" href="#download-and-installation" title="Permalink to this headline">¶</a></h1> <p>The current release is version 2.2.0.</p> <div class="section" id="packaged-versions"> <h2>Packaged versions<a class="headerlink" href="#packaged-versions" title="Permalink to this headline">¶</a></h2> <p>You can download it <a class="reference external" href="http://pypi.python.org/pypi/Pygments">from the Python Package Index</a>. For installation of packages from PyPI, we recommend <a class="reference external" href="http://www.pip-installer.org">Pip</a>, which works on all major platforms.</p> <p>Under Linux, most distributions include a package for Pygments, usually called <code class="docutils literal notranslate"><span class="pre">pygments</span></code> or <code class="docutils literal notranslate"><span class="pre">python-pygments</span></code>. You can install it with the package manager as usual.</p> </div> <div class="section" id="development-sources"> <h2>Development sources<a class="headerlink" href="#development-sources" title="Permalink to this headline">¶</a></h2> <p>We’re using the <a class="reference external" href="http://selenic.com/mercurial">Mercurial</a> version control system. You can get the development source using this command:</p> <div class="highlight-default notranslate"><div class="highlight"><pre><span></span><span class="n">hg</span> <span class="n">clone</span> <span class="n">http</span><span class="p">:</span><span class="o">//</span><span class="n">bitbucket</span><span class="o">.</span><span class="n">org</span><span class="o">/</span><span class="n">birkenfeld</span><span class="o">/</span><span class="n">pygments</span><span class="o">-</span><span class="n">main</span> <span class="n">pygments</span> </pre></div> </div> <p>Development takes place at <a class="reference external" href="http://bitbucket.org/birkenfeld/pygments-main">Bitbucket</a>, you can browse the source online <a class="reference external" href="http://bitbucket.org/birkenfeld/pygments-main/src">here</a>.</p> <p>The latest changes in the development source code are listed in the <a class="reference external" href="http://bitbucket.org/birkenfeld/pygments-main/src/tip/CHANGES">changelog</a>.</p> </div> </div> </div> </div> </div> <div class="clearer"></div> </div> <div class="footer" role="contentinfo"> © Copyright 2006-2017, Georg Brandl and Pygments contributors. Created using <a href="http://sphinx-doc.org/">Sphinx</a> 1.7.6. <br/> Pygments logo created by <a href="http://joelunger.com">Joel Unger</a>. Backgrounds from <a href="http://subtlepatterns.com">subtlepatterns.com</a>. </div> </div> </body> </html>
| ver. 1.4 |
Github
|
.
| PHP 8.2.30 | Generation time: 0 |
proxy
|
phpinfo
|
Settings