How to create a Conda environment that uses PyPy?

前端 未结 4 1769
夕颜
夕颜 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:20

    I'm not sure what changed, but conda install pypy3 definitely doesn't work for me (Jan-2021):

    conda install pypy3
    Collecting package metadata (current_repodata.json): done
    Solving environment: failed with initial frozen solve. Retrying with flexible solve.
    Collecting package metadata (repodata.json): done
    Solving environment: failed with initial frozen solve. Retrying with flexible solve.
    
    PackagesNotFoundError: The following packages are not available from current channels:
    
      - pypy3
    
    Current channels:
    
      - https://repo.anaconda.com/pkgs/main/win-64
      - https://repo.anaconda.com/pkgs/main/noarch
      - https://repo.anaconda.com/pkgs/r/win-64
      - https://repo.anaconda.com/pkgs/r/noarch
      - https://repo.anaconda.com/pkgs/msys2/win-64
      - https://repo.anaconda.com/pkgs/msys2/noarch
    
    To search for alternate channels that may provide the conda package you're
    looking for, navigate to
    
        https://anaconda.org
    
    and use the search bar at the top of the page.
    

提交回复
热议问题