venvでPythonの仮想環境
をテンプレートにして作成
[
トップ
] [
新規
|
一覧
|
検索
|
最終更新
|
ヘルプ
|
ログイン
]
開始行:
* 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);
終了行:
* 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);
ページ名: