jay
jay

Reputation: 1463

Need to install Python3 after installing anaconda3 and python2.7

Currently, I have anaconda3 installed on my Mac, and I am using python 2.7 also. But I am trying to see if I can use python 3.1 as an alternative.

When I check the environments using the command,

conda info --envs

I get the output as :

base *  /anaconda3
python2 /anaconda3/envs/python2

MayI know what steps shd I take so that I can see python3.1 also in list of environments? Do I need to reinstall anaconda3 on my machine.thanks

Upvotes: 0

Views: 289

Answers (2)

Parijat Bhatt
Parijat Bhatt

Reputation: 674

try this

conda install python=3.1

Upvotes: 1

Jo-Tech Games
Jo-Tech Games

Reputation: 56

Heres the files for python 3.1 download and install them https://www.python.org/download/releases/3.1/ This should make it appear if 3.1 is available with that software

Upvotes: 3

Related Questions