Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Equivalent of apt-get install python3.6-dev for conda

Tags:

python

conda

How can I create a conda environment with the development version of python? Or does it already include all the necessary extension when I create one.

conda create -n py36 python=3.6

like image 838
student Avatar asked Apr 27 '18 17:04

student


1 Answers

conda search python has a maximum version of 3.6.5, so I think only stable releases are available through conda.

edit: some dev versions are available on conda-forge:

conda search python --channel conda-forge to see them

conda create --name dev python=[version here] --channel conda-forge to install

like image 116
Pdubbs Avatar answered Oct 09 '22 21:10

Pdubbs