RandomCoder
RandomCoder

Reputation: 7054

Conda install locked when downloading packages

I use Anaconda environment to handle Python package installation. My previous conda install command was interrupted before completion. If I launch again the command, it is now blocked when downloading packages.

Is there a way to get back to previous status when it was working ?

Upvotes: 1

Views: 795

Answers (1)

RandomCoder
RandomCoder

Reputation: 7054

Previous installation set a lock. That lock was not removed because of interruption.

To remove it and allow new installation, use the command:

conda clean --lock 

Additional option documented here may be useful depending on the case.

Upvotes: 1

Related Questions