4
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 5 years have passed since last update.

VSCodeのターミナルでAnacondaの仮想環境が利用できないとき(Windows10)

Last updated at Posted at 2018-08-06

#問題
Anaconda NavigaterからVSCodeを起動した場合、ターミナルを自動で仮想環境を有効にした状態にしてくれるのですが、ターミナルがPowerShellだと上手く動かないことがあるようです。
##解決策
PowerShellの代わりにコマンドプロンプトを使用する。

VSCodeでsettings.json(ウィンドウ上部にあるメニューのファイル→基本設定→設定から開けます)を開き、
"terminal.integrated.shell.windows": "コマンドプロンプトの実行ファイルのパス",
を追加する。

##例

settings.json
{
    "terminal.integrated.shell.windows": "コマンドプロンプトの実行ファイルのパス",
}
4
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
4
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?