How to create a Conda environment that uses PyPy?

前端 未结 4 1767
夕颜
夕颜 2021-02-13 22:50

So here is my issue. I\'ve managed to install PyPy using conda with the following command:

conda install -c conda-forge pypy3.5

Unfortunately,

4条回答
  •  无人及你
    2021-02-13 23:16

    Worked for me like this:

    conda create -n pypy3 -c conda-forge pypy3.5
    

    Afterwards you have to link to the pypy3 interpreter within the bin directory of the env

    ln -s pypy3 python
    

提交回复
热议问题