問題描述
我正在研究 Tensorflow 對象檢測項目,為此我使用 Anaconda 3 和 python 3.7,但在運行對象檢測演示時遇到了一些問題,我在 stackoverflow 上閱讀了幾篇文章,發(fā)現(xiàn)它可以通過以下方式解決將 Anaconda 與 python 3.6 一起使用,但此版本在 Anaconda 的 下載 頁面上不可用,有只有兩個版本,即 Python 3.7 和 Python 2.7,但我需要 Python 3.6.
I was working on Tensorflow object detection project, for this I am using Anaconda 3 with python 3.7 but I am facing some issues while running object detection demo, I read couple of posts here on stackoverflow and found that it can be solved by using Anaconda with python 3.6 but this version is not available at Anaconda's download page, there are only two versions i.e for Python 3.7 and Python 2.7 but I need for Python 3.6.
任何幫助都會很棒.
推薦答案
如建議 這里,通過安裝最后一個 anaconda,您可以創(chuàng)建一個環(huán)境,就像 Cleb 解釋的那樣 或降級python:
As suggested here, with an installation of the last anaconda you can create an environment just like Cleb explained or downgrade python :
conda install python=3.6.0
使用第二種解決方案,您可能會遇到與其他軟件包不兼容的問題.我自己測試過,沒有遇到任何問題,但我猜這取決于您安裝的軟件包.
With this second solution, you may encounter some incompatibility issues with other packages. I tested it myself and did not encounter any issue but I guess it depends on the packages you installed.
如果您不想處理環(huán)境或遇到不兼容問題,可以在此處下載任何 Anaconda 版本:https://repo.continuum.io/archive/.例如,Anaconda3-5.1.0-XXX 或 Anaconda3-5.2.0-XXX 提供 python 3.6(后綴 XXX 取決于您的操作系統(tǒng)).
If you don't want to handle environments or face incompatibilities issues, you can download any Anaconda version here: https://repo.continuum.io/archive/. For example, Anaconda3-5.1.0-XXX or Anaconda3-5.2.0-XXX provides python 3.6 (the suffix XXX depends on your OS).
要了解anaconda包中提供了哪些python,可以訪問Release筆記頁面.它提供所有 anaconda 版本的更新.找到你的并尋找線
To know which python is provided in an anaconda package, you can visit the Release notes page. It provides the updates for the all anaconda versions. Find yours and look for the line
蟒蛇A.B.C->X.Y.Z
python A.B.C -> X.Y.Z
其中 A.B.C 是以前的版本,X.Y.Z 是更新后的 python 版本.
where A.B.C is the previous version and X.Y.Z is the updated python version.
這篇關(guān)于如何下載適用于 python 3.6 的 Anaconda的文章就介紹到這了,希望我們推薦的答案對大家有所幫助,也希望大家多多支持html5模板網(wǎng)!