在Anaconda中创建python 3.3环境

问题描述

我想在Anaconda(安装了最新的Minicoda3)中创建python 3.3环境。

我尝试使用<?xml version="1.0" encoding="utf-8"?> <MotionScene xmlns:android="http://schemas.android.com/apk/res/android" xmlns:app="http://schemas.android.com/apk/res-auto"> <ConstraintSet android:id="@+id/start"> <Constraint android:id="@+id/reading_list_item_layout" android:layout_width="match_parent" android:layout_height="72dp" app:layout_constraintBottom_toBottomOf="parent" app:layout_constraintEnd_toEndOf="parent" app:layout_constraintStart_toStartOf="parent" app:layout_constraintTop_toTopOf="parent" /> <Constraint app:layout_editor_absoluteY="1dp" android:id="@+id/imageView" /> </ConstraintSet> <ConstraintSet android:id="@+id/end"> <Constraint android:id="@+id/reading_list_item_layout" app:layout_constraintEnd_toEndOf="parent" android:layout_width="0dp" android:layout_height="72dp" app:layout_constraintBottom_toBottomOf="parent" app:layout_constraintTop_toTopOf="parent" app:layout_constraintStart_toEndOf="parent" /> </ConstraintSet> <Transition app:constraintSetEnd="@id/end" app:constraintSetStart="@+id/start"> <OnSwipe app:dragDirection="dragRight" app:touchAnchorId="@id/reading_list_item_layout" app:touchAnchorSide="left" /> </Transition> </MotionScene>

conda create -n py33 python=3.3

(我也添加了conda-forge,以防有python 3.3版本)。查找Anaconda和Conda-forge信息库,在我看来python 3.3已被弃用,因为它没有在可用的软件包中列出。

但是,我将需要使用python 3.3。我更愿意通过Anaconda来做到这一点,但这并不是绝对必要的。另外,考虑到Anaconda存储库中不提供Python 3.3,我想其他的python包也将不可用?

解决方法

事实证明,“免费”存储库中提供了Python 3.3:

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

这完美无瑕。