発生している問題
vscodeを更新してから、既定のプロファイルがcommandpromptでもターミナルで
実行時に強制的にpowershellになってしまいます。
commandpromptで実行したいのですが、どうすればよいでしょうか。
試したこと
・既定のプロファイルは当然ですが、commandpromptです。
・terminal.integrated.defaultProfile.windowsの設定もcommandpromptに変更済み。
・settings.jsonは以下のようなコードになっています。
{ "python.pythonPath": "C:\Users\Anaconda3\python.exe", "workbench.editorAssociations": { "*.ipynb": "jupyter.notebook.ipynb" }, "python.condaPath": "C:\Users\Anaconda3\Scripts", "editor.suggestSelection": "first", "vsintellicode.modify.editor.suggestSelection": "automaticallyOverrodeDefaultValue", "terminal.integrated.defaultProfile.windows": "Command Prompt", "terminal.integrated.profiles.windows": { "PowerShell": { "source": "PowerShell", "icon": "terminal-powershell" }, "Command Prompt": { "path": [ "${env:windir}\Sysnative\cmd.exe", "${env:windir}\System32\cmd.exe" ], "args": [ "/k", "chcp", "65001" ], "icon": "terminal-cmd" }, "Git Bash": { "source": "Git Bash" } }, "terminal.integrated.shell.windows": "C:\Windows\System32\cmd.exe", "python.terminal.activateEnvironment": false, }
補足情報(FW/ツールのバージョンなど)
vscodeのバージョン:1.60.0
Pythonのバージョン:3.8.5
回答1件
あなたの回答
tips
プレビュー