jaimergp

Results 951 comments of jaimergp

I don't think we have much control there after the kernel restart. `python3.real` is the one we renamed after making `/usr/local/bin/python` a shell forwarder with the conda activation and other...

Hi @duerrsimon, with #31 being merged, I cannot reproduce this anymore, so I guess it's fixed! :D You can use the pre-release with: ```python !pip install -q https://github.com/conda-incubator/condacolab/archive/main.tar.gz ``` And...

Ooops, I somehow never replied to this. So this is tricky to implement. The `install()` function invokes a kernel restart, so we lose the connection to the server for a...

That should work but you might need to add `-p ` to your command (I think it's `/usr/local` for the currently released version). That said, @ssurbhi560 is working on this...

Hm, so `napari` needs to be running for everything? There's some code there that does look that it could work without it :/ Can you comment on this @gschlafly?

I can't see the changes @gduscher :( We also need to revert the edits on the example yaml.

There's an issue with the h5py dependency. If not specified, the solver will pick it up as a 2nd-order dep, all they way back to 3.1. However, those builds have...

Thanks for all the work in making this pass!

The `logging` module works on the assumption that _emission_ of messages is decoupled of _delivery_. In this decoupling, libraries are only emitters, and it's up to the applications to configure...

That's why all these `if verbose:` checks do not make much sense in our case. We can (and should) leave all the `logger.{info,debug,warn,error}` calls unchecked and, if anything, configure the...