英文:
How to upgrade pypy itself?
问题
I've installed pypy by conda:
conda create -n pypy37 pypy python=3.7
and pypy version is:
Python 3.7.12 | packaged by conda-forge | (44db2626, Oct 29 2021, 16:19:11)
[PyPy 7.3.7 with GCC Clang 11.1.0]
Now I want to upgrade pypy itself, not python version, is there any command can achieve this? Thanks!
英文:
I've installed pypy by conda:
conda create -n pypy37 pypy python=3.7
and pypy version is:
Python 3.7.12 | packaged by conda-forge | (44db2626, Oct 29 2021, 16:19:11)
[PyPy 7.3.7 with GCC Clang 11.1.0]
Now I want to upgrade pypy itself, not python version, is there any command can achieve this? Thanks!
答案1
得分: 1
conda(以及PyPy)已经不再支持pypy3.7。我建议你使用以下命令创建一个新的环境:
conda create -n pypy39 pypy python=3.9
英文:
conda (and PyPy) have dropped support for pypy3.7. I would recommend you build a new environment with
conda create -n pypy39 pypy python=3.9
通过集体智慧和协作来改善编程学习和解决问题的方式。致力于成为全球开发者共同参与的知识库,让每个人都能够通过互相帮助和分享经验来进步。


评论