I have worked on the Colab for a long time. For some of my packages, I need to use Conda on Colab. The way I usually install conda is as follows:
!pip install conda
!pip show conda
When conda comes to install I have the following issue:
Looking in indexes: https://pypi.org/simple, https://us-python.pkg.dev/colab-wheels/public/simple/
ERROR: Could not find a version that satisfies the requirement conda (from versions: 3.0.6, 3.5.0, 3.7.0, 3.17.0, 4.0.0, 4.0.1, 4.0.2, 4.0.3, 4.0.4, 4.0.5, 4.0.7, 4.0.8, 4.0.9, 4.1.2, 4.1.6, 4.2.6, 4.2.7, 4.3.13, 4.3.16)
ERROR: No matching distribution found for conda
I am already having the following code to execute the library I have used, but as conda cannot install correctly, the program cannot run in the normal way.
!pip install -q condacolab
import condacolab
condacolab.install()
I am not sure the provided like being my answer, but any suggestion is appreciated.