Emiliano Tonizzo
Emiliano Tonizzo

Reputation: 103

Where is the Spyder Terminal (yeah, I downloaded it)?

I downloaded the Spider Terminal plugin from Github via Anaconda Prompt though, I can't find the Terminal when I boot Spyder -_- .

Does someone know Where it is ?

Upvotes: 2

Views: 23993

Answers (3)

ashik acharya
ashik acharya

Reputation: 1

If you have Anaconda Prompt, you can change working directory to the project you are working on. Then you can write all the commands in anaconda prompt. No need for terminal.

Unfortunately, unlike PyCharm, Spyder does not have default terminal.

Upvotes: 0

Saurabh Jain
Saurabh Jain

Reputation: 1712

For Spyder 4.0.1, you need to install the terminal explicitly using

conda install spyder-terminal -c spyder-ide

Restart spyder and after installation, you'd see View> Panes > Terminal. The Terminal can be seen adjacent to the IPython console and History tab at the bottom.

Checkout this is repo for more info.

Upvotes: 5

pteehan
pteehan

Reputation: 817

For me it appeared as a tab next to the IPyhton consoles.

You can click View -> Panes -> Terminal to toggle it on and off, that should help you find where it is.

Upvotes: 5

Related Questions