Я пытаюсь открыть терминал в студии Android, но каждый раз, когда я нажимаю на него, он говорит: «java.io.IOException: Не удалось создать PTY». Как это исправить?
Я решил эту проблему, откройте «Настройки»> «Инструмент»> «Терминал», я обнаружил, что путь к оболочке недействителен (возможно, это вызвано обновлением версии github). Поэтому я выбираю другой путь, который находится в другой папке с именем git-cmd. EXE
November 2018
2k раз
Я стараюсь, чтобы открыть терминал в андроиде студии, но каждый раз, когда я нажимаю на него, он говорит «java.io.IOException: Не удалось создать PTY». Как это исправить?
1 ответы
Я решил эту проблему с помощью открытой Настройки> Инструмент> Terminal, я обнаружил, что путь оболочки недопустим (Возможно, это вызвано я обновить версию Github), поэтому я выбираю другой путь, которые лежат в другой папке, имя которой является ГИТ-CMD. EXE
In android studio when I click on terminal—> ‘+’ button new terminal does not open
2 Answers 2
Go to File -> Settings -> Tools -> Terminal and change Shell path based on the the installed git version.
for 64bit:
«C:Program FilesGitinsh.exe» -login -i
for 32bit:
«C:Program Files (x86)Gitinsh.exe» -login -i
Don’t forget the quotes around the command.
This issue can arise due to various reasons. I faced the same issue and none of the above steps worked for me. Then I checked the IntelliJ logs C:UsersYOURUSERNAME.IntelliJIdea2018.2systemlog. This will give you the exact reason for the problem.
For me issue was Windows update caused some Dll Permission issue. hence ** I did a system restore** to a time before the time I started facing this issue and the problem is fixed
Источник: