😉
VSCODEでPoetryで設定した仮想環境を選択する
なぜかPoetryで作った仮想環境が検索できない
VSCODEでPoetryで作った仮想環境を選択しようとしても出てこなくて困ったぜ🌟
VSCODEの記述を確認する
VSCODEドキュメントで確認できる
Virtual environments located in the folder identified by the
python.venvPath
setting (see General Python settings), which can contain multiple virtual environments. The extension looks for virtual environments in the first-level subfolders of venvPath.
今回はこちらが役に立った。
Poetryの仮想環境のパスを取得する
下記のコマンドで取得可能
poetry config virtualenvs.path
VSCODEのSETTINGS.JSONに記載
下記を追加
{
"python.venvPath" : (poetry config virtualenvs.pathから取得したパス)
}
Discussion