在 anaconda 上安装 cx_freeze?
Install cx_freeze on 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
我在 python 上使用 anaconda 3.7.4,在 linux-64 Ubuntu 14 上使用 2.7.9 版。
如果 conda install
由于与您使用的 Python 版本冲突而无法安装软件包:
- 确保 pip 安装在您当前的(虚拟)Python 环境中:
conda install pip
(或 conda list
查看 pip 是否在已安装的软件包列表中)
- 使用 pip 安装您的包:
pip install <name of your package>
我正在尝试将 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
我在 python 上使用 anaconda 3.7.4,在 linux-64 Ubuntu 14 上使用 2.7.9 版。
如果 conda install
由于与您使用的 Python 版本冲突而无法安装软件包:
- 确保 pip 安装在您当前的(虚拟)Python 环境中:
conda install pip
(或conda list
查看 pip 是否在已安装的软件包列表中) - 使用 pip 安装您的包:
pip install <name of your package>