-
Notifications
You must be signed in to change notification settings - Fork 37
Sphinx の初期セットアップ
ousttrue edited this page Sep 29, 2022
·
2 revisions
どの OS で どの Python を使うかをまず決めます。
Winodws の公式Pythonをインストールすると System32
とかパスの通った場所に py.exe
が入ります。
ps1$ py -m pip install -r requirements.txt
PYTHON_INSTALL\Scripts
に sphinx とかが入ります。
powershell
ps1$ py -m venv .venv
ps1$ .venv/Scripts/Activate.ps1 # Windows版は .venv/Scripts に実行ファイルが入ります。
venv$ pip install -r requirements.txt
bash
$ python -m venv .venv
$ source .venv/bin/activate # Windows以外は .venv/bin に実行ファイルが入ります。
venv$ pip install -r requirements.txt