如何升级pypy本身?

huangapple go评论62阅读模式
英文:

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

huangapple
  • 本文由 发表于 2023年2月6日 15:01:14
  • 转载请务必保留本文链接:https://go.coder-hub.com/75358230.html
匿名

发表评论

匿名网友

:?: :razz: :sad: :evil: :!: :smile: :oops: :grin: :eek: :shock: :???: :cool: :lol: :mad: :twisted: :roll: :wink: :idea: :arrow: :neutral: :cry: :mrgreen:

确定