8,024 questions
-1
votes
0
answers
51
views
Jupyter differences between Completer and IPCompleter
The right way to change Jedi status in a Jupyter notebook seems to be
%config Completer.use_jedi=False
However the right way to check whether Jedi is enabled seems to be
%config IPCompleter.use_jedi
...
Advice
0
votes
5
replies
111
views
Python List Conflict with Boolean and Int value
I came across an interesting behavior in Python lists and wanted some clarification.
var1 = [1, 2.3, 67, 'New Value', True, 'Welcome', 6]
var1.remove(True)
print(var1)
Output:
[2.3, 67, 'New Value', ...
-3
votes
1
answer
73
views
Error while starting Jupyter Notebook on Fedora Linux
I just did an upgrade of my Fedora from 41 to 43 version and got the following error message while starting Jupyter Notebook:
Traceback (most recent call last):
File "/home/hasek/.local/bin/...
-1
votes
1
answer
511
views
Why can't I install Jupyter in a conda environment running Python 3.14? [closed]
I've installed miniconda, I've set-up an environment with Python 3.14.2, but I'm struggling to install Jupyter. Here's the code:
Could not solve for environment specs
The following packages are ...
1
vote
2
answers
241
views
Cursor can't detect conda env created by Miniforge(installed by homebrew), but VSCode can
I installed Miniforge via Homebrew and created a conda environment named env311.
VSCode can detect and select this interpreter normallyenter image description here, but Cursor cannot see it.enter ...
1
vote
1
answer
82
views
VSCode cannot find the module ipykernel when starting the code from launch.json
I am building a web server (with bottle.py) that loads notebook_client, etc, in order to execute Python notebooks in a custom way.
When I start the server from the command line, as in
python main.py
...
0
votes
0
answers
80
views
IOPUB Data rate exceeded in Pycharm
I'm using jupyter notebooks via pycharm and I'm running into an issue where the program is saying the following:
" IoPub data rate exceeded.
The jupyter server will temporarily stop sending ...
0
votes
0
answers
50
views
I am using JupyterLite to run some python code. And there is a specific cell which is not executing as desired
When I run the cell below, and there is no file with the same name as filename, it executes perfectly. But on subsequent runs, if there exists a file with the same name, the kernel gets busy and ...
1
vote
0
answers
207
views
Jupyter notebook refusing to recognize matplotlib installation
I am running a Jupyter notebook and I had to manually install using pip Matplotlib 3.10.7 because it wasn't recognized on my Anaconda. Now when I try to get it in Jupyter I get this error:
...
0
votes
1
answer
68
views
Jupyter Markdown hyperlink with <style> does not show color
Can someone help explain what is going on, and how to fix it so I don't have too put a <span> in every link.
I am actually writing some .md files and using Juypter to display it in its final ...
3
votes
1
answer
123
views
I would like to know how to configure jupyter notebook to display dot-files in the file browser
I regularly run jupyter notebook for tinkering with python projects (usually related to data analytics). It would be helpful if the jupyter "Home" page (the file system browser window) would ...
1
vote
1
answer
1k
views
Switching over from Spyder to VSCode
I am a long time user of Spyder to do data science with Python. At work I am trying to switch over to VSCode so that I can benefit from AI tools such as Amazon Q. So far I can not put together a set ...
19
votes
3
answers
13k
views
Jupyter Notebook extension Visual Studio Code stuck "connecting to kernel"
I use Python 3.11.1 and Jupyter Notebook to run code selections or lines in the Interactive Window for debugging or coding purposes.
A few days ago, everything was working fine, and I didn't have any ...
0
votes
0
answers
65
views
Unable to make python virtual env work with jupyter
I followed the instructions from https://stackoverflow.com/a/58134257/31654471:
(qiskit) C:\Users\erick> ipython kernel install --user --name=qiskit
Installed kernelspec qiskit in C:\Users\erick\...
-1
votes
1
answer
142
views
issue with sagemath in jupyterhub
jupyterhub run with jupytrerlab on my vps (archlinux) in a venv.
Sagemath is installed at /usr/bin/sage.
venv/bin/jupyter kernelspec list
or sudo venv/bin/jupyter kernelspec list return
Available ...