前提
- Python & pip インストール済み
- Windows
事前手順(別環境のPJがある場合)
事前のプロジェクトの依存関係をメモ
pip freeze > requirements.txt
必要なファイルの移管
- ソースコードとrequirements.txt
手順
プロジェクトのルートフォルダを作る
mkdir Sample
cd Sample
仮想環境(myenv)作成
python -m venv myenv
仮想環境の起動
バックスラッシュ(\)であることに注意。
myenv\Scripts\activate
pip install
pip install XXX
pip install -r requirements.txt
仮想環境の終了
myenv\Scripts\deactivate