Questions tagged [jupyter]
The jupyter tag has no summary.
11 questions
3
votes
1
answer
250
views
How to run one installed Jupyter Notebook from one venv/virtualenv environment and use packages from another venv/virtualenv?
I've set up different Python venv/virtualenv environments on my Debian 12, each with their own packages.
However, I want to use/install Jupyter Notebook only once (in just one virtual environment).
...
0
votes
0
answers
36
views
Jupyter QtConsole GUI window ignores configured width and height
Below, two qtconsole instances, the first uses a font size of 14 pts, the second a font size of 12 pt — both use a width of 81 characters,
As you can see, the actual widths in characters is quite ...
1
vote
1
answer
2k
views
Unable to detect Python kernels in VS Code Jupyter notebooks after migrating from Windows 11 to Arch Linux
Environment Details
Previous OS: Windows 11
Current OS: Arch Linux
Desktop Environment: KDE Plasma
IDE: Visual Studio Code (OSS CODE)
Required Feature: Jupyter Notebook support
Issue Description
...
5
votes
0
answers
2k
views
How can I show the resource usage of a Jupyter notebook in VSCode
Understand that there is a jupyter-resource-usage Jupyter extension which allows us to monitor the resource usage (e.g. CPU, memory) of a running Notebook (server and its children (kernels, terminals, ...
0
votes
1
answer
1k
views
python uses the entire RAM when running code
I guess the issue is not with the python specifically but with overall RAM management in Linux. So here's the code:
!pip install numpy opencv-python pandas matplotlib tensorflow scikit-learn
import ...
1
vote
1
answer
309
views
Look for multiple line string from bash
I am currently working with Jupyter notebooks. With an IDE I used to be able to look for parts of my code that could be elsewhere, and thus refactor as needed.
Suppose I have the following code:
...