Long Vu

Results 90 comments of Long Vu

@fcollonval I think I got what you wanted `$ /opt/conda/bin/mamba repoquery search birdy --json` ``` { "command": "/opt/conda/bin/mamba repoquery search birdy --json", "conda_info": { "GID": 1000, "UID": 1000, "active_prefix": "/opt/conda/envs/birdy",...

> "error": "RuntimeError(\"Operation not permitted: '/opt/conda/pkgs/cache/3e39a7aa.json'\")", But I do have write access to that file, I tried `echo >> /opt/conda/pkgs/cache/3e39a7aa.json` and it works fine.

@fcollonval I found it, the current user have to be the owner of `/opt/conda/pkgs/cache/` folder. Just having write-access is not enough for mamba. I was enough for conda. Should I...

> Thanks a lot @tlvu to dig that one up. Would you mind opening an issue in the [mamba repository](https://github.com/mamba-org/mamba)? Sure. Will close this issue once the other one in...

I also have the same problem. CPU not showing, only memory is showing.

@enricovara The conda dependency solver is slow with large repo (conda-forge). That problem is know and is still not solved. We switched to mamba which is way faster but in...

> My understanding: > > 1. mamba can be installed by calling `conda install mamba -n base -c conda-forge` > > 2. `mamba` replaces `conda` in all normal conda commands...

I also experienced the same `ImportError: libarchive.so.13: cannot open shared object file: No such file or directory` problem. `libarchive` from `defaults` channel seems broken but the one from `conda-forge` is...

I confirm mamba 0.24.0 and conda 4.13.0 now works together. Test `Dockerfile`, installing mamba along-side conda works: ``` FROM continuumio/miniconda3 RUN conda update conda -n base && \ conda install...

> (*) @tlvu Can you give basic details on how your dev server is different from me calling `gunicorn --bind=0.0.0.0:5000 finch.wsgi:application` in a terminal? @aulemahal My dev server deployed using...