Author: Matti Picus <[email protected]> Branch: extradoc Changeset: r769:0f202d1ef6e0 Date: 2016-07-19 21:10 +0300 http://bitbucket.org/pypy/pypy.org/changeset/0f202d1ef6e0/
Log: simplify explanation about pip, reference pypy documentation diff --git a/download.html b/download.html --- a/download.html +++ b/download.html @@ -205,11 +205,8 @@ <div class="section" id="installing-more-modules"> <h1>Installing more modules</h1> <p>The recommended way is to install <tt class="docutils literal">pip</tt>, which is the standard package -manager of Python. It works like it does on CPython. One practical -difference, though, is that it usually comes pre-packaged for you when -you get CPython from a place like your Linux distribution. In the case -of PyPy (or CPython if you download it from <a class="reference external" href="http://www.python.org/">http://www.python.org/</a>), -you need to get it separately, as explained <a class="reference external" href="http://pypy.readthedocs.org/en/latest/faq.html#module-xyz-does-not-work-with-pypy-importerror">in our FAQ.</a></p> +manager of Python. It works like it does on CPython as explained in the +<a class="reference external" href="http://doc.pypy.org/en/latest/install.html">installation documentation</a></p> </div> <div class="section" id="installing-numpy"> <h1>Installing NumPy</h1> @@ -236,6 +233,7 @@ </div> <div class="section" id="building-from-source"> <span id="translate"></span><h1>Building from source</h1> +<p>(see more build <a class="reference external" href="http://pypy.readthedocs.org/en/latest/build.html">instructions</a>)</p> <ol class="arabic"> <li><p class="first">Get the source code. The following packages contain the source at the same revision as the above binaries:</p> diff --git a/source/download.txt b/source/download.txt --- a/source/download.txt +++ b/source/download.txt @@ -199,8 +199,8 @@ .. _`nightly binary builds`: http://buildbot.pypy.org/nightly/trunk/ -Installing -------------------------------- +Installing +---------- All binary versions are packaged in a ``tar.bz2`` or ``zip`` file. When uncompressed, they run in-place. For now you can uncompress them @@ -215,13 +215,10 @@ ------------------------------- The recommended way is to install ``pip``, which is the standard package -manager of Python. It works like it does on CPython. One practical -difference, though, is that it usually comes pre-packaged for you when -you get CPython from a place like your Linux distribution. In the case -of PyPy (or CPython if you download it from http://www.python.org/), -you need to get it separately, as explained `in our FAQ.`__ +manager of Python. It works like it does on CPython as explained in the +`installation documentation`_ -.. __: http://pypy.readthedocs.org/en/latest/faq.html#module-xyz-does-not-work-with-pypy-importerror +.. _installation documentation: http://doc.pypy.org/en/latest/install.html Installing NumPy @@ -256,8 +253,11 @@ .. _translate: -Building from source -------------------------------- +Building from source +-------------------- + +(see more build instructions_) + 1. Get the source code. The following packages contain the source at the same revision as the above binaries: @@ -366,6 +366,7 @@ This also applies to translation (unless you use CPython to run the translation and you specify ``--source``). +.. _instructions: http://pypy.readthedocs.org/en/latest/build.html .. _`x86 (IA-32)`: http://en.wikipedia.org/wiki/IA-32 .. _`x86-64`: http://en.wikipedia.org/wiki/X86-64 .. _SSE2: http://en.wikipedia.org/wiki/SSE2 _______________________________________________ pypy-commit mailing list [email protected] https://mail.python.org/mailman/listinfo/pypy-commit
