sunil kancharlapalli
sunil kancharlapalli

Reputation: 105

choose python version in an anaconda environment

We have Anaconda installed on my cloudera cluster via parcels. We have python 2.7.13 available with the version of Anaconda. We wanted to have another version of python (3.6) across all nodes.

My challenge here is, when I followed the Conda documentation to create a new environment and install python 3.6 on that using "conda create -n py36 python=3.6 anaconda". For few nodes, I am getting python3.6.6 installed for few nodes, and python3.6.7 for few nodes and 3.6.1 for few.

I would like to know if there is a way to choose the version of python while installing 3.6 on a separate environment. Or am I doing something wrong? Please help me.

Thanks Kancharlapalli

Upvotes: 1

Views: 1206

Answers (1)

merv
merv

Reputation: 76720

You can specify the patch as well

conda create -n py36 python=3.6.7 anaconda

Upvotes: 2

Related Questions