Using Powershell as terminal in IntelliJ IDEA IDEs like PyCharm, PHPStorm or RubyMine

后端 未结 11 1386
太阳男子
太阳男子 2020-12-24 01:53

I have been attempting to run powershell as my terminal on windows in pycharm, so I did the following:

\"enter

11条回答
  •  爱一瞬间的悲伤
    2020-12-24 02:36

    Specify the shell that will run by default. Here are some examples of different shells:

    Bash: /bin/bash

    Z shell: /bin/zsh

    Bash for Windows: bash.exe

    WSL: wsl.exe

    PowerShell: powershell

    Command Prompt: cmd.exe

    Cygwin: "C:\cygwin\bin\bash.exe" --login -i

    for more info: https://www.jetbrains.com/help/webstorm/settings-tools-terminal.html

提交回复
热议问题