jupyter lab 的三個小問題

立体风發表於2024-07-16

執行程式時報錯:

/home/llama/miniconda3/envs/torch/lib/python3.12/site-packages/tqdm/auto.py:21: TqdmWarning: IProgress not found. Please update jupyter and ipywidgets. See https://ipywidgets.readthedocs.io/en/stable/user_install.html

from .autonotebook import tqdm as notebook_tqdm

這個錯誤提示的很清楚:要更新 jupyter 和 ipywidgets 包

pip install --upgrade jupyter ipywidgets

解決問題。

如何給jupyter 新增代理

由於有時需要 jupyter lab 即時下載一些模組,需要用到代理。
可用 proxychains4 ,但是由於 jupyter 和 proxychains4 同時用到 localhost 這個地址,故需要在 proxychains4 的配置檔案修改一下:

/etc/proxychains4.conf

# 遮蔽一些本地迴環地址,這樣就不會出現迴圈了。
localnet 127.0.0.0/255.0.0.0

重啟 jupyter lab

You can install it with pip:

`pip install timm`. Please note that you may need to restart your runtime after installation.

安裝軟體包後,需要重啟 jupyter runtime,方法如下:

選單的 Kernel -> restart Kernel

或者:

Click the "Kernel" menu in the top toolbar.
Select "Restart Kernel" from the menu.

相關文章