3
5

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 3 years have passed since last update.

Windowsでvenv

Last updated at Posted at 2021-02-13

はじめに

Windowsにおける、venvのメモ
venv単位で仮想環境が作れるので便利
1週間で忘れてしまっていたので、メモ残し(特にポリシーのやつ)

構築&実行プロセス

venvの環境を構築

python -m venv envsample

※envsampleは好きな名前を(以下そのテイで記載)
※上記で、envsampleのフォルダができる

ポリシーの設定

Set-ExecutionPolicy RemoteSigned -Scope Process

※このコマンドは毎回実行する必要がある(その代わり管理権限が不要)
※永続設定もある(こちらは管理権限が必要)

環境下に入る

.\envsample\Scripts\activate

※Script以下のactivateを実行すればよい(確かbatファイル)
※docker exec ~ bash みたいなイメージ

(envsample) PS C:\sample\python

※上みたいに先頭にカッコ書きになったら、仮想環境下にいる

pipのバージョンアップ

python -m pip install -U pip

※activateした初回はやっておこう

環境外に出る

deactivate

※カッコが外れる

3
5
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
3
5

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?