简体   繁体   English

如何使用conda安装最新的Python开发版本?

[英]How to install the latest development version of Python with conda?

I'm interested in trying the latest Python (3.6.0-rc1) in a virtual environment. 我有兴趣在虚拟环境中尝试最新的Python(3.6.0-rc1)。 Is there a way to use conda for installing development releases? 有没有办法使用conda来安装开发版本? The traditional way does not appear to work, eg: 传统方式似乎不起作用,例如:

conda create -n rc python=3.6.0.rc1

I realize these releases are new and may not be available yet on Anaconda proper , but perhaps there are channels for dev releases or an alternative method I do not know. 我意识到这些版本是新版本,可能尚未在Anaconda上提供,但也许有开发版本的渠道或我不知道的替代方法。

尝试使用conda-forge频道

conda create --name rc python=3.6.0.rc1 --channel conda-forge --override-channels

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM