How to install PyPy in anaconda

前端 未结 4 1018
面向向阳花
面向向阳花 2021-02-07 02:38

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

4条回答
  •  眼角桃花
    2021-02-07 03:36

    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.

提交回复
热议问题