Skip to content Skip to sidebar Skip to footer

Creating Python 3.3 Environment In Anaconda

I would like to create a python 3.3 environment in Anaconda (latest Minicoda3 installed). I tried using conda create -n py33 python=3.3: Collecting package metadata (current_repoda

Solution 1:

It turned out that Python 3.3 is available in the 'free' repository:

conda create -n py33 python=3.3--channel free

This worked flawlessly.

Post a Comment for "Creating Python 3.3 Environment In Anaconda"