I have a Linux-64 bit machine. How do I install PyPy in my anaconda environment. I tried conda install pypy. It says there are no available packages. pip install pypy also retur
In addition to Ohad's answer, create a new environment to house pypy first. PyPy wouldn't install for my base configuration but did this way:
conda create -n
Enter the enviromnent
conda activate
install pypy to the environment
conda install -c conda-forge pypy3.6
Then proceed to install the rest of the packages you need available.