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

后端 未结 11 1385
太阳男子
太阳男子 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:44

    If you're running on Windows 8 x64 then running both the commands below may help. It worked for me.

    Set-ExecutionPolicy Unrestricted
    start-job { Set-ExecutionPolicy Unrestricted -Force } -RunAs32
    

    Credit to a comment found here: Powershell on Windows 7: Set-ExecutionPolicy for regular users

提交回复
热议问题