Jerome
Jerome

Reputation: 1759

How to change the Terminal in Android Studio to iTerm2?

As the title says, is there any way to change the default Terminal of Android Studio to iTerm2 on Mac OS?

Upvotes: 17

Views: 22082

Answers (3)

Amin
Amin

Reputation: 241

Do it on Mac:

go to File/Other Settings/Preferences For New Projects then in Terminal tab, change the "Shell Path" attribute. You may click on the folder icon on the right side of this field and choose your desired shell.

Upvotes: 2

Waheed Akhtar
Waheed Akhtar

Reputation: 1085

For Mac OS

File -> Other Settings -> Preference for New Projects -> Shell path

Windows OS

Please follow @matiash answer.

Alternative

It will work both on Terminal and in Android Studio.

  • To check available shells: available shells run: cat /etc/shells
  • To select your favourite (I am selecting bash): chsh -s /bin/bash

That's all.

Upvotes: 8

matiash
matiash

Reputation: 55350

I haven't tested it on a Mac, but at least on Windows you can select the shell used by the Terminal window in the Settings Menu (for example from the default cmd.exe to TCC/LE).

I suspect it should be the same way,

File -> Settings -> Terminal -> Shell path

See the IDEA documentation for the Terminal plugin.

Upvotes: 33

Related Questions