我为不同的项目安装了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的软件包。
这是我所做的,但没有一个能够发挥作用:
谢谢!
答案 0 :(得分:0)
我发现我必须首先删除包缓存。或强制conda使用-f选项安装Python。