PyPy's speed promises make me want to try it. Unfortunately, none of the tutorials I read on the subject really helped me to understand the very basics, namely how to (in simple steps):
- Install PyPy on Mac
- Run a .py script
I read that downloading, extracting and running pypy myscript.py
from bin/
should do the trick, but no luck for me so far. Here's what I get:
MyMacbook:bin User$ pypy myscript.py
-bash: pypy: command not found
Could anyone help me understand PyPy's basic usage?
Have you tried using homebrew (http://brew.sh/)?
Looks like a "brew install pypy" should get you there.
edit: Alternatively have you checked whether or not you've put your install on your path? For instance, I grabbed it and put it into my home directory.
Then in my .bash_profile I put the following line in:
Now I can run pypy ~/scripts/test.py from wherever I want.
---- edit 2 ---- To answer the last question regarding the packages being missing:
"If you want to install 3rd party libraries, the most convenient way is to install distribute and pip:"
"3rd party libraries will be installed in pypy-2.1/site-packages, and the scripts in pypy-2.1/bin"
-- from here: http://doc.pypy.org/en/latest/getting-started.html#installing-pypy