Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Which version of Miniconda has Python 3.6 for Windows 64-bit?

I'm working on a project which need these deep learning libraries - keras and tensorflow. Unfortunately, these do not work with Python 3.7. Can someone please tell me a Miniconda version (for Windows 64-bit) which has Python 3.6? I've tried creating virtual environment with Python 3.6, but the libraries don't install properly. Any help will be appreciated! Thanks!

like image 866
Vaishnavi Killekar Avatar asked Feb 11 '19 10:02

Vaishnavi Killekar


People also ask

Which version of Miniconda should I install?

On Windows, macOS, and Linux, it is best to install Miniconda for the local user, which does not require administrator permissions and is the most robust type of installation. However, if you need to, you can install Miniconda system wide, which does require administrator permissions.

How do I install Python 3.6 in Anaconda prompt?

Getting Anaconda Or download the latest version of Anaconda and run the following command to install Python 3.5 (or 3.6) in the root environment: conda install python=3.5 or conda install python=3.6 .

Is Python installed with Miniconda?

Miniconda comes with Python and a small number of essential packages. Additional packages can be installed using the package management systems mamba or conda.

What is the difference between conda and Miniconda?

Differences. There are essentially two main differences: Number of packages: Anaconda comes with over 150 data science packages, whereas miniconda comes with only a handful. Interface: Anaconda has a graphical user interface (GUI) called the Navigator, while miniconda has a command-line interface.


2 Answers

I wanted to find the last package in the 3.6 series, so I found the announcement of the python 3.7 package build (September 4, 2018) and then looked that package up by date in https://repo.continuum.io/miniconda/ (Miniconda3-4.5.11), then traced it back one release. The end result:

Miniconda3-4.5.4 was the last Python 3.6 miniconda package.

Miniconda3-4.5.11 is the first that uses 3.7.

There are no releases 4.5.5->4.5.10 in that repository.

like image 78
gremwell Avatar answered Sep 22 '22 09:09

gremwell


I just downloaded Miniconda3-4.3.31 for Windows 64bit and it came with Python 3.6.3.

https://repo.continuum.io/miniconda/ Binary: https://repo.continuum.io/miniconda/Miniconda3-4.3.31-Windows-x86_64.exe

like image 25
Adam Lenneau Avatar answered Sep 19 '22 09:09

Adam Lenneau