简体   繁体   中英

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. Is there a way to use conda for installing development releases? 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.

尝试使用conda-forge频道

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

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

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