1
0

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 1 year has passed since last update.

Powershellでのvenvの操作方法

Posted at

PowerShellでのvenvの操作方法は以下の通りです。

  1. 仮想環境を作成する
python -m venv <venvの名前>

例えば、仮想環境を myenv という名前で作成する場合は以下のようになります。

python -m venv myenv
  1. 仮想環境を有効化する
<venvの名前>\Scripts\Activate.ps1

例えば、 myenv という名前の仮想環境を有効化する場合は以下のようになります。

.\myenv\Scripts\Activate.ps1
  1. 仮想環境を無効化する
deactivate
  1. 仮想環境を削除する
Remove-Item <venvの名前> -Recurse -Force

例えば、 myenv という名前の仮想環境を削除する場合は以下のようになります。

Remove-Item myenv -Recurse -Force
1
0
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
1
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?