问题描述
安装 nb_conda 包时报错。
conda install nb_conda
Solving environment: - warning libmamba Added empty dependency for problem type SOLVER_RULE_UPDATE
failed
LibMambaUnsatisfiableError: Encountered problems while solving:
- package nb_conda-2.2.1-py27_0 requires python >=2.7,<2.8.0a0, but none of the providers can be installed
Could not solve for environment specs
The following packages are incompatible
├─ nb_conda is installable with the potential options
│ ├─ nb_conda 2.2.1 would require
│ │ └─ python >=2.7,<2.8.0a0 , which can be installed;
│ ├─ nb_conda 2.2.1 would require
│ │ └─ python >=3.5,<3.6.0a0 , which can be installed;
│ ├─ nb_conda 2.2.1 would require
│ │ └─ python >=3.6,<3.7.0a0 , which can be installed;
│ ├─ nb_conda 2.2.1 would require
│ │ └─ python >=3.7,<3.8.0a0 , which can be installed;
│ └─ nb_conda 2.2.1 would require
│ └─ python >=3.8,<3.9.0a0 , which can be installed;
└─ pin-1 is not installable because it requires
└─ python 3.10.* , which conflicts with any installable versions previously reported.
原因分析
nb_conda
包需要 Python 版本在 2.7 到 3.8 之间,但当前的环境使用的是 Python 3.10,这是不兼容的。
解决方案
conda install nb_conda_kernels