Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How to open a terminal on WebStorm?

Tags:

webstorm

How do I get WebStorm to open a terminal?

When I try to do it I get an Exception:

"java.io.IOEXception:couldn't create PTY" 

git also has the same problem on my computer.

like image 529
small fish Avatar asked May 07 '15 02:05

small fish


People also ask

How do I open a terminal window in IntelliJ?

Opening a Terminal Window We can open the terminal window with ⌥F12 on macOS, or Alt+F12 on Windows and Linux. The terminal supports all the same commands that the operating system supports. and press enter.

How do you open a Jetbrain?

To run IntelliJ IDEA, find it in the Windows Start menu or use the desktop shortcut. You can also run the launcher batch script or executable in the installation directory under bin. Run the IntelliJ IDEA app from the Applications directory, Launchpad, or Spotlight.


1 Answers

Go to File -> Settings -> Tools -> Terminal and change Shell path based on the the installed git version.

for 64bit:
"C:\Program Files\Git\bin\sh.exe" -login -i

for 32bit:
"C:\Program Files (x86)\Git\bin\sh.exe" -login -i

Don't forget the quotes around the command.

like image 103
John Doe Avatar answered Oct 19 '22 11:10

John Doe