-
Notifications
You must be signed in to change notification settings - Fork 288
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
AttributeError: 'IOLoopKernelManager' object has no attribute 'extra_env' #580
Comments
Interesting. I think you've stumbled upon a "hidden gem" of an issue - the manual configuration of Given this was deprecated more than 7 years ago, I think we could take a couple of approaches.
It's item 2 that has me puzzled. If I use
Since I feel somewhat responsible for this mess, I'm happy to correct it, but would like to discuss which of these approaches (or any others) we should take. Frankly, given I also believe we should go ahead and take option 3 regardless. I don't actually view Option 2 as an option. Its really, at this point, just rogue code. I'm going to go ahead and submit a PR to take Option 3. Since that effort is a subset of Option 1, we can amend the PR to include Option 1 based on what we decide. @web-sys1 - thank you for bringing this to our attention. For the time being, you should avoid configuring the deprecated |
I'm thinking now (after submitting the #581) it might be best to take this in two steps. Remove |
@kevin-bates then, what type of commands can be useful? I miss the |
I see. I thought you were just experimenting with My guess is that it was deprecated because folks could simply configure the command they want in the This is good information - thank you. Given a 7-year deprecation phase, I think we need to apply some action and follow through with its removal or retract the deprecation and support it forever. It doesn't play well with multi-kernel support which I believe is why this was deprecated in the first place. At any rate, you should be able to use |
Sure. Ipykernel does and kernels are supplied through host to notebook. The path {
"argv": [
"python",
"-m",
"ipykernel_launcher",
"-f",
"{connection_file}"
],
"display_name": "Python 3",
"language": "python"
}
|
If you're saying that installation of the ipykernel overwrites your customization, create your kernel.json in a sibling directory and reflect that change in the |
I've encountered a kernel error while prompting from Jupyter command: 'IOLoopKernelManager' object has no attribute 'extra_env'. I typed
--KernelManager.kernel_cmd
throughipython
..jupyter
via command prompt to see how it works, and I got an error:When I came to the webpage to read the Configuration options page then then I caught:
KernelManager.kernel_cmd : List
I'm wondered the command is deprecated. Can anyone help to deal with this issue?
The text was updated successfully, but these errors were encountered: