Reputation: 1
I'm planning to install PyPy on my system. I already have CPython implementation existing on my system. Will installing PyPy affect this existing system implementation in any way ?
In nutshell, I want to know if PyPy and CPython an co-exist on any OS without any issues ? I'm attempting this on Mac OS X 10.6
Upvotes: 0
Views: 430
Reputation: 9803
They can physically co-exist without any issue.
I am writing this in a system which has both Python 2.7.3, Pypy 1.9 and Python 3.2.3 installed.
Apart from that, Alex Martelli (who is an expert pythonista) in his book Python in a Nutshell, seems to concur. To quote him:
"Download and install all of them. They are free and coexist without issues."
With them he refers to CPython, IronPython and Jython, but the same can apply to Pypy.
Also, you should not take my word for it. Download and install it and try it. Naturally, you won't have any issues.
Upvotes: 2