5
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?

More than 1 year has passed since last update.

venv仮想環境がインタープリタとして認識されない

Posted at

はじめに

VscodeでPythonを動かす際に、venvで作成した仮想環境がインタープリタとして認識されず地味に手こずったので書き記します。

結論

venvコマンドで作成されるディレクトリを作業中のルートディレクトリ直下に配置する。

段落

詳細

以下のようなディレクトリ構成としていました。

test
└── test_2
    ├── test.py
    └── testenv

すると仮想環境を起動していてもインタプリーターが選択されず以下のようになります。
image.png

選択にも表示されません。
image.png

改善後

以下のように仮想環境のディレクトリをルート直下に配置したところインタープリタとして認識されました。
image.png

おわりに

しょうもない結論ですが、少しつっかえていたので誰かの参考になれば幸いです。

5
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
5
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?