





















https://www.python.org/
for example:
python-3.14.0-amd64.exe
install

> py -0
-V:3.14 * Python 3.14 (64-bit)
-V:3.13 Python 3.13 (64-bit)
-V:3.12 Python 3.12 (64-bit)
-V:3.11 Python 3.11 (64-bit)
> python --version Python 3.9.13
> py -m venv myenv_3_14
> .\myenv_3_14\Scripts\activate
(myenv_3_14) PS D:\
(myenv_3_14) PS D:\> python --version
Python 3.14.0
(myenv_3_14)
> deactivate
> py --version
Python 3.14.0
> py -m pip install --upgrade pip
> py -m pip install notebook
> jupyter notebook [I 2025-11-25 20:46:28.199 ServerApp] Extension package jupyter_server_terminals took 0.6866s to import [I 2025-11-25 20:46:28.706 ServerApp] jupyter_lsp | extension was successfully linked. [I 2025-11-25 20:46:28.712 ServerApp] jupyter_server_terminals | extension was successfully linked. [I 2025-11-25 20:46:28.727 ServerApp] jupyterlab | extension was successfully linked. [I 2025-11-25 20:46:28.738 ServerApp] notebook | extension was successfully linked.
...Or copy and paste one of these URLs: http://localhost:8888/tree?token=a7b0746c1f0cd96588efa4198781436a3d4cf4ff2e7dbdf6 http://127.0.0.1:8888/tree?token=a7b0746c1f0cd96588efa4198781436a3d4cf4ff2e7dbdf6


.py files).| Feature | Jupyter Notebook | Python IDE / Notebook |
|---|---|---|
| Interface | Web-based | Desktop application |
| File Type | .ipynb |
.py |
| Documentation | Markdown + Code | Comments only |
| Visualization | Inline plots/images | Separate windows |
| Best For | Data analysis, ML | Full-scale development |
add file test.ipynb


ipykernel is a key component of the Jupyter ecosystem. Here’s what it is and why it matters:
ipykernel is the Python kernel for Jupyter. A kernel is the computational engine that executes the code contained in your Jupyter Notebook cells.ipykernel, Jupyter cannot run Python code.ipykernel in that environment.PS,
VS code extention used

此内容由惯性聚合(RSS阅读器)自动聚合整理,仅供阅读参考。 原文来自 — 版权归原作者所有。