在anaconda上安装cx_freeze?

时间:2015-01-21 17:33:04

标签: python cx-freeze anaconda

我试图将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。

1 个答案:

答案 0 :(得分:6)

如果conda install无法安装软件包,因为与您使用的Python版本存在冲突:

  • 确保pip安装在当前(虚拟)Python环境中:conda install pip(或conda list以查看pip是否在已安装软件包列表中)
  • 使用pip安装您的软件包:pip install <name of your package>