Pythonインストール
Microsoft Storeからインストール
バージョン確認
python --version
Python仮想環境
仮想環境構築
python -m venv folder
仮想環境有効化・無効化
cd folder
有効化
.\Scripts\Activate.ps1
無効化
deactivate
参考

初心者向けのWindowsのPython
WindowsでPythonを初めて使用する場合に役立つガイドです。

Welcome to Python.org
The official home of the Python Programming Language

Python 3.14 documentation
The official Python documentation.
venv --- 仮想環境の作成
ソースコード: Lib/venv/ The venv module supports creating lightweight "virtual environments", each with their own independent ...