在WebStorm中打开终端时出错

时间:2018-05-24 08:42:44

标签: terminal webstorm

我在过去6个月内使用WebStorm进行Angular项目,现在我突然尝试在WebStorm中访问终端时收到错误消息

  

java.io.IOException:无法创建PTY

实际上无法理解其原因。

enter image description here

enter image description here

1 个答案:

答案 0 :(得分:1)

发生此错误是因为IDE未找到已安装的git版本的正确shell路径。

要解决此问题,请转到<?xml version="1.0" encoding="utf-8"?> <android.support.design.widget.CoordinatorLayout xmlns:android="http://schemas.android.com/apk/res/android" xmlns:app="http://schemas.android.com/apk/res-auto" xmlns:tools="http://schemas.android.com/tools" android:id="@+id/main_content" android:layout_width="match_parent" android:layout_height="match_parent" android:fitsSystemWindows="true" tools:context=".match.PartitaSpinnerActivity"> <android.support.design.widget.AppBarLayout android:id="@+id/appbar" android:layout_width="match_parent" android:layout_height="wrap_content" android:paddingTop="@dimen/appbar_padding_top" android:theme="@style/AppTheme.AppBarOverlay"> <android.support.v7.widget.Toolbar android:id="@+id/toolbar" android:layout_width="match_parent" android:layout_height="?attr/actionBarSize" android:layout_weight="1" android:background="?attr/colorPrimary" app:layout_scrollFlags="scroll|enterAlways" app:popupTheme="@style/AppTheme.PopupOverlay" app:title="@string/app_name"> <Spinner android:id="@+id/spinner" android:layout_width="wrap_content" android:layout_height="wrap_content" app:popupTheme="@style/AppTheme.PopupOverlay" /> </android.support.v7.widget.Toolbar> </android.support.design.widget.AppBarLayout> <android.support.v4.widget.NestedScrollView android:id="@+id/container" android:layout_width="match_parent" android:layout_height="match_parent" app:layout_behavior="@string/appbar_scrolling_view_behavior" /> </android.support.design.widget.CoordinatorLayout> 菜单并根据安装的git版本更改Shell路径。

在Windows上执行:

代表64位:
File -> Settings -> Tools -> Terminal

代表32位:
"C:\Program Files\Git\bin\sh.exe" -login -i

不要忘记命令周围的引号。

和Linux:

"C:\Program Files (x86)\Git\bin\sh.exe" -login -i/usr/bin/zsh或系统的Shell路径。