Kyle Barron
Kyle Barron
I can't remember if the jupyter protocol ends a stream response with a custom message. If so, seems easy to collect a stream into a single block (as long as...
Can you try ``` pip uninstall stata_kernel pip install stata_kernel==1.10.5 python -m stata_kernel.install ``` I might have had a breaking change in 1.11.0
@mcaceresb I think I might just publish a new release with the same code as 1.10.5. I don't really have the ability to debug things when I don't have Stata....
Oh right, it would be pretty stupid/mean to revert to 1.10.5 after accepting that PR. I added quite a few commits after 1.10.5, and even apparently made a Git tag...
> if I don't delete the contents of ~/.stata_kernel_cache You _should_ never need to touch or delete anything in that folder. Given that the error is > No such file...
I don't know how adopaths work, (I don't even use Stata anymore), but I'm guessing you're overwriting a path that the kernel expects. See here we define a custom adopath:...
Looks like this is supposed to be handled through [`do_shutdown`](https://ipython.readthedocs.io/en/stable/development/wrapperkernels.html#MyBetterKernel.do_shutdown). We do call `self.stata.shutdown()` https://github.com/kylebarron/stata_kernel/blob/b7cd97223827fa095c27774d7b6b81434ac4b97c/stata_kernel/kernel.py#L340 which tries to run `exit, clear` in Stata: https://github.com/kylebarron/stata_kernel/blob/b7cd97223827fa095c27774d7b6b81434ac4b97c/stata_kernel/stata_session.py#L577-L578 Not sure off the top of...
Can you try ``` pip uninstall stata_kernel pip install stata_kernel==1.10.5 python -m stata_kernel.install ```
@CarolineMorton I forgot that there's a caveat to using Stata IC on MacOS. StataCorp doesn't ship with the console version on MacOS, so you have to use the `automation` execution...
@jeffmax if you're interested in making a pull request to fix an issue, you're welcome to