-
Notifications
You must be signed in to change notification settings - Fork 57
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
%help magic does not work for Stata commands #426
Comments
Just to confirm, do you have internet? (i.e. while running the kernel) |
Yep, I have Internet access, and |
Modify the code in Original code: reply = urllib.request.urlopen(self.html_help.format(cmd))
html = reply.read().decode("utf-8") Change it to: reply = requests.get(self.html_help.format(cmd))
html = reply.text |
Also need to add I'm not sure why, but using |
The
%help
magic does not currently seem to work for Stata commands. Built-in commands like%help magics
work, but Stata-specific queries like%help histogram
do not. The cell is marked as[*]
in JupyterLab and never returns any output.I can confirm this behavior on an Ubuntu 20.04 system running Stata 17 and on a Windows system running Stata 15. The stata_kernel debug log is empty.
The text was updated successfully, but these errors were encountered: