Back

Explore Courses Blog Tutorials Interview Questions
0 votes
2 views
in Python by (50.2k points)

I was working on a Tensorflow object detection project, for this, I am working with Anaconda 3 with python 3.7 but I am encountering some issues while executing an object detection demo, I found that it can be resolved by using Anaconda with python 3.6 but this version is not possible at Anaconda's download page, there are only two versions, one is for Python 3.7 and Python 2.7 but I want for Python 3.6.

1 Answer

0 votes
by (108k points)

You can simply download the 3.7 version and then use:

conda create -n mygreatenvironment python=3.6 <add other packages here>

and then:

conda activate mygreatenvironment

This environment will use Python 3.6.

Related questions

0 votes
1 answer
0 votes
4 answers
0 votes
1 answer
0 votes
1 answer
0 votes
1 answer

Browse Categories

...