我是靠谱客的博主 腼腆故事,最近开发中收集的这篇文章主要介绍python3.6升级3.8_使用conda升级到python 3.8,觉得挺不错的,现在分享给大家,希望可以做个参考。

概述

Python 3.8.0 is out, but I haven't been able to find any post on how to update to python 3.8 using conda - maybe they will wait for the official release? Any suggestions?

解决方案

You can update your python version to 3.8 in conda using the command

conda install -c anaconda python=3.8

as per https://anaconda.org/anaconda/python. Though not all packages support 3.8 yet, running

conda update --all

may resolve some dependency failures. You can also create a new environment called py38 using this command

conda create -n py38 python=3.8

Edit - note that the conda install option will potentially take a while to solve the environment, and if you try to abort this midway through you will lose your Python installation (usually this means it will resort to non-conda pre-installed system Python installation).

最后

以上就是腼腆故事为你收集整理的python3.6升级3.8_使用conda升级到python 3.8的全部内容,希望文章能够帮你解决python3.6升级3.8_使用conda升级到python 3.8所遇到的程序开发问题。

如果觉得靠谱客网站的内容还不错,欢迎将靠谱客网站推荐给程序员好友。

本图文内容来源于网友提供,作为学习参考使用,或来自网络收集整理,版权属于原作者所有。
点赞(70)

评论列表共有 0 条评论

立即
投稿
返回
顶部