0
1

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

venvで仮想環境構築 (Windows)

Last updated at Posted at 2024-02-28

はじめに

venv(ブイエンブ)を使って仮想環境を構築する方法の備忘録

venvは導入が簡単!

pythonの標準機能なのでソフトウェアのインストールが不要!
dockerなどと比較しても軽量なので気軽に仮想環境を構築したい時にはGood

venvによる仮想環境構築方法

環境

・Windows11
・Powershell

1. 仮想環境の構築

まず仮想環境を置いておくディレクトリを作成する.
そして,そのディレクトリ内で以下のコマンドを実行.

python -m venv env

末尾の"env"は仮想環境の名前で,ここは任意で良い.
例えば,pytorchを使いたいのであれば

python -m venv pytorch

とすれば"pytorch"という名前の仮想環境が構築できる.

2. 仮想環境への入り方

.\env\Scripts\activate

を実行すれば入れる.
その後はpipで必要なライブラリを入れるなりして環境を構築していこう.

3. 仮想環境の終了

deactivate

これで終了できる.

最後に

venvはこれだけで仮想環境が作れる!
仮想環境の構築に煩わしさを感じている人にぜひおすすめ!!

0
1
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
0
1

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?