-
Notifications
You must be signed in to change notification settings - Fork 2
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Allow pip installation of packages into base #28
Comments
Hi @skwde! It's been a while since I've touched this repo, so my memory is not so great here. If I'm remembering correctly, the issue is the following error: $ docker run --rm -it mambaorg/micromamba
(base) mambauser@da4ec6b19c03:/tmp$ cat >> environment.yaml
name: base
channels:
- conda-forge
- nodefaults
dependencies:
- python
- pip>=10.0
- pip:
- pymarkdownlnt
(base) mambauser@da4ec6b19c03:/tmp$ micromamba create -n base -f environment.yaml
error libmamba Overwriting root prefix is not permitted
critical libmamba Aborting. (Note: I used Ctrl+D to gracefully exit from the If I run
Rather than tackling this here, I wonder if it would make more sense to request adding a @skwde, would you be interested in tackling this? |
@maresb thanks for you reply. I created the corresponding issue in the mamba repo: mamba-org/mamba#3689 For now I have a workaround, i.e. I simply do the required installation in a |
Consider following environment file:
To my understanding installing this base environment is not possible by just using the feature.
A
postCreateCommand
has to be used.Related: #14
The text was updated successfully, but these errors were encountered: