やったことリスト
- choco install pyenv-win
- pyenv install 3.9.6
- pyenv global 3.9.6
- →デフォルト
- python -m venv test
- →カレントに test フォルダを作ってそこに仮想環境設定が入る
- python -m venv %USERPROFILE%\venv\root とかやってる人がいる。ちゃんとしててえらい。
- test\Scripts\activate
-
(test)
が行頭に表示される - test という仮想環境ができた
- ここでpipをするとこの環境に基本はいる
-