conda 32位继续安装64位python 3.5.2

时间:2016-11-11 14:34:41

标签: python 32bit-64bit conda

我为不同的项目安装了32位conda和64位conda。我创建了一个新环境并在

中指定了python 3

#!/bin/bash echo “Good Morning, Please enter your file type for sorting [ENTER]:” read $FILE if [[ $file == *.jpg ]]; then mv ~/DIR1/*jpg* ~/Users/christopherdorman/desktop/dir2/ echo “your files have been successfully processed” fi

该命令选择了Python 3.5.2但是在64位而不是32位。但当我将命令改为

conda create -name ..name.. python=3

它正确地拾取了32位python。我的问题是如何强制conda拾取32位python 3.5.2?所以我可以使用一些只支持python 3.5的软件包。

这是我所做的,但没有一个能够发挥作用:

  • 安装了32位和64位蟒蛇
  • 安装了32位和64位condas
  • 在PATH
  • 中将32位Miniconda设置为64位Miniconda
  • 启动了32位conda提示
  • 设置CONDA_FORCE_32BIT = 1

谢谢!

1 个答案:

答案 0 :(得分:0)

我发现我必须首先删除包缓存。或强制conda使用-f选项安装Python。