本文介绍了在Anaconda上安装cx_freeze时发生程序包冲突的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
我正在尝试使用anaconda提示符安装cx_freeze.遵循他们网站上的内容,我使用了:
I am trying to install the cx_freeze using anaconda prompt. Following what's on their website, I used:
conda install -c pyzo cx_freeze
我收到此错误:
UnsatisfiableError: The following specifications were found to be in conflict:
- cx_freeze
- wincertstore
Use "conda info <package>" to see the dependencies for each package.
有人知道我在这里必须如何处理依赖性吗?
Does anyone know how I have to deal with dependencies here?
谢谢.
推荐答案
因此,到目前为止,仅使用pip
就可以了.我打开conda
提示符并使用以下命令:
So as of now, simply using pip
worked for me. I opened the conda
prompt and used the following:
pip install cx_freeze
这篇关于在Anaconda上安装cx_freeze时发生程序包冲突的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!