condacolab
condacolab copied to clipboard
Install Conda and friends on Google Colab, easily
I'd be nice to allow to point `.install` method to https://mamba.readthedocs.io/en/latest/user_guide/micromamba.html in order to speed up the installation process.
I adapted the example notebook: https://colab.research.google.com/drive/1HjikV9AS7X4eklbPtauTG_N6XNGIwOHG?usp=sharing But I get the following errors: ``` platform: linux-64 Collecting package metadata (repodata.json): ...working... done Solving environment: ...working... Found conflicts! Looking for incompatible packages....
It would be super nice if we could get a one-liner to create an environment from a .yml file. So far I am doing this ``` !pip install -q condacolab...
Thanks for creating condacolab! I was wondering if you thought about the possibility of installing from a local .sh file that one could keep in their Google Drive. That way...
python 3.8?
Is there a way to use condacolab to switch to python 3.8 (or any other version)? I tried : "!conda install -c anaconda python=3.8" but that resulted in: ✨🍰✨ Everything...
This is probably an edge case but I'm importing a library that calls a .py file and uses `sys.executable` to set the python executable to do this this. After installing...
After `condacolab` is installed, entry points that are provided with subsequently installed conda packages are not found by [`pkg_resources.iter_entry_points()`](https://setuptools.pypa.io/en/latest/pkg_resources.html#convenience-api). Instead, it looks like only the original entry points provided with...
I installed `condacolab` then added my `environment.yml` as instructed in the README and everything installed perfectly, but when I went to run my code a `ModuleNotFoundError` was thrown at my...
See [cffi-bug colab notebook](https://colab.research.google.com/drive/1iC0rywlfRN2vKx8-PFXYSjxzAn25vH4y?usp=sharing). There are several resources related to this: - https://stackoverflow.com/questions/43325110/exception-version-mismatchcffi - https://stackoverflow.com/questions/52456379/pip-version-mismatch-in-venv - https://stackoverflow.com/questions/68592184/error-version-of-cffi-python-package-mismatch - https://stackoverflow.com/questions/67630525/version-mismatch-this-is-the-cffi-rapids-on-colab In other code: ```python !conda install -c sgbaird mat_discover from mat_discover.mat_discover_...
shortcoming mentioned "You can only use the base environment, so do not try to create more environments with conda create." but i think i am actually able to do so,...