我试图将cx_freeze安装到我在anaconda中制作的虚拟环境中。在环境中,我输入(https://binstar.org/pyzo/cx_freeze):
conda install -c https://conda.binstar.org/pyzo cx_freeze
我收到以下消息:
Fetching package metadata: ...
Solving package specifications: ..
Error: Unsatisfiable package specifications.
Generating hint:
[2/2 ] |#####################################################################################################################################################################################| 100%
Hint: the following combinations of packages create a conflict with the
remaining packages:
- python 2.7*
- cx_freeze
我在Linux-64 Ubuntu 14上的python版本2.7.9上使用了anaconda 3.7.4。
答案 0 :(得分:6)
如果conda install
无法安装软件包,因为与您使用的Python版本存在冲突:
conda install pip
(或conda list
以查看pip是否在已安装软件包列表中)pip install <name of your package>