Open andy60 opened 1 year ago
I am having the same problem after doing "conda update conda" and "conda update --all" from the Anaconda Powershell Prompt. A bug apparently?
anaconda-client 1.9.0 py311haa95532_0 defaults
This old package seems to be the culprit. The use of collection.Mapping
, which had been deprecated and stopped working since Python 3.10, was removed in anaconda-client 1.10.0.
conda update conda
conda install anaconda-client=1.10.0
When I ran the command:
conda install anaconda-client=1.10.0
I met a error
Channels:
LibMambaUnsatisfiableError: Encountered problems while solving:
Could not solve for environment specs The following packages are incompatible ├─ anaconda-client 1.10.0* is installable with the potential options │ ├─ anaconda-client 1.10.0 would require │ │ └─ python >=3.10,<3.11.0a0 , which can be installed; │ ├─ anaconda-client 1.10.0 would require │ │ └─ python >=3.8,<3.9.0a0 , which can be installed; │ └─ anaconda-client 1.10.0 would require │ └─ python >=3.9,<3.10.0a0 , which can be installed; └─ pin-1 is not installable because it requires └─ python 3.11. , which conflicts with any installable versions previously reported.
Pins seem to be involved in the conflict. Currently pinned specs:
@thangldw anaconda-client 1.11.0 or later might be fine. try conda install 'anaconda-client>=1.11'
@thangldw anaconda-client 1.11.0 or later might be fine. try
conda install 'anaconda-client>=1.11'
Thanks you. I solved it with your command line
Thanks that also solved my problem!
Checklist
What happened?
Conda info
Conda config
Conda list
Additional Context
No response