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.

venvが作成されない場合

Last updated at Posted at 2023-08-24

用途

仮想環境を構築する際に毎回忘れるのでメモ

venvが作成されない場合

新しい環境を作成する。
下記を打ち込んで、venvフォルダが作成されない場合がある。

$ cd [project dir]
$ python3 -m venv [newenvname]

venvフォルダが作成されない場合は、pythonが環境変数設定されていない。
解決方法としては以下2つ。

  • 環境変数を設定する
  • 下記で.exeパスを絶対参照すると行ける。
$ C:\Users\abc\AppData\Local\Programs\Python\Python39\python.exe -m venv .venv

あとはvenv activateすればOK
git bashで行うなら下記で実行

$ source <venv_name>/Scripts/Activate

参考にさせていただいた記事

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?