Note that there are some explanatory texts on larger screens.

plurals
  1. PO
    primarykey
    data
    text
    <p>Pypy has a separate install space. Therefore, any modules you want to install from pypi should be installed into its space. So, for instance, I have pypy installed in /usr/local/pypy-1.9-32bit</p> <p>I recommend using pip or easy_install. Here's how to install pip:</p> <pre><code>curl curl https://bootstrap.pypa.io/get-pip.py | /usr/local/pypy-1.9-32bit/bin/pypy </code></pre> <p>or </p> <pre><code>curl https://raw.github.com/pypa/pip/master/contrib/get-pip.py | /usr/local/pypy-1.9-32bit/bin/pypy </code></pre> <p>Then, just use the newly installed pip to get the module:</p> <pre><code>sudo /usr/local/pypy-1.9-32bit/bin/pip install tables </code></pre> <p>In this case, it failed, with the following error:</p> <pre><code>bminton@bminton:/tmp$ sudo /usr/local/pypy-1.9-32bit/bin/pip install tables Downloading/unpacking tables Downloading tables-2.4.0.tar.gz (8.9Mb): 8.9Mb downloaded Running setup.py egg_info for package tables .. ERROR:: You need numpy 1.4.1 or greater to run PyTables! Complete output from command python setup.py egg_info: .. ERROR:: You need numpy 1.4.1 or greater to run PyTables! </code></pre> <p>Installation failed in this case, because Tables depends on Numpy, which is not yet supported by PyPy (although they are working on it, see <a href="http://pypy.org/numpydonate.html" rel="nofollow noreferrer">http://pypy.org/numpydonate.html</a>). However, for many python modules, this method works great. For instance, I successfully installed the logilab constraint package this way.</p>
    singulars
    1. This table or related slice is empty.
    plurals
    1. This table or related slice is empty.
    1. This table or related slice is empty.
    1. This table or related slice is empty.
    1. This table or related slice is empty.
    1. VO
      singulars
      1. This table or related slice is empty.
    1. This table or related slice is empty.
 

Querying!

 
Guidance

SQuiL has stopped working due to an internal error.

If you are curious you may find further information in the browser console, which is accessible through the devtools (F12).

Reload