#author("2024-12-24T15:17:59+09:00","default:honma","honma") #author("2024-12-24T15:19:48+09:00","default:honma","honma") * venvでPythonの仮想環境 [#x8124bac] Python 3.3 から標準機能になった venv を使えば、手順は簡単。 $ python3 -m venv <DIR> $ source <DIR>/bin/activate 実際に jupyter notebook をインストールする時はこんな感じ $ mkdir jupyter $ cd jupyter $ python3 -m venv .venv $ source .venv/bin/activate $ pip install jupyter numpy 起動 $ jupyter notebook 実に簡単 実に簡単にできる。 ~ #htmlinsert(amazon_pc.html);