real_actor
real_actor

Reputation: 579

Set the font size in pycharm's python console or terminal

There are terminal and python console in pycharm, which are very convenient. But I found that the font size was too small to recognize in terminal or python console. How can change the font size in the terminal or python console?

Upvotes: 53

Views: 34290

Answers (5)

mark kats
mark kats

Reputation: 137

I thought it doesn't work for me either but the problem was that:

you have to close all terminal windows to see the spacing effect.

Upvotes: 0

CodeTherapy
CodeTherapy

Reputation: 420

The location of console font changed in the latest versions of Pycharm.
Settings -> Editor -> Color Scheme -> Console Font

enter image description here

Upvotes: 6

Steve HHH
Steve HHH

Reputation: 13147

In PyCharm 2016.3, the console font setting is squirrelled away under Settings > Editor > Colors & Fonts > Console Font:

Console font settings in PyCharm

Note: Changes to the colors and font are not visible immediately, you have to restart the terminal session to apply them. It's not enough to just hide and reopen the terminal. Just click the red cross button on the terminal's toolbar (Close Terminal Session) and reopen it. The same is valid also for the Python Console.

Upvotes: 82

Fatemeh khodaparast
Fatemeh khodaparast

Reputation: 141

Go to File\Settings\Editor\Color & Fonts and choose save as to save currently used schema by a new name in order to make changes on a new schema. Then in mentioned direction go to console font and set size.

Upvotes: 0

wolfsgang
wolfsgang

Reputation: 894

A simple google search would have lead you here.
You just need to create a personal scheme under settings >Editor > color and fonts.
Edit:Here this further explanation may help more.
1.In color and fonts choose save as and give a scheme name.
2.Go to console font and change size and primary font, which will be inaccessible if you didn't choose the personal scheme you created earlier.

Upvotes: -2

Related Questions