How to install Matplotlib in Pycharm Correctly

preview_player
Показать описание
Tutorial on How to install Matplotlib in Pycharm Correctly

➖➖➖➖➖➖➖➖➖➖
▶️ How to install PyCharm (one my favorite Python IDEs and the one I'm using in this Video):

▶️ Our Machine Learning Tutorial Playlist:

▶️ Our Python Programming Playlist:

▶️ PyCharm Tutorial Playlist (Tips and Tricks):

▶️ Jupyter Notebook Tutorial playlist:

▶️ How to install Jetbrains DataSpell IDE (one my favorite Python IDEs) [which is like PyCharm]:

➖➖➖➖➖➖➖➖➖➖
Рекомендации по теме
Комментарии
Автор

thanks finally a good tutorial because all the videos that i saw were on A MAC

sindev
Автор

Thanks. I found out that just because Anaconda had installed all these packages, it doesn't mean Pycharm knows about them.

ajutu
Автор

hello, I encountered error in pycharm while using matplotlib.
in the code

import matplotlib.pyplot as plt
squares = [1, 4, 9, 16, 25]
fig, ax = plt.subplots()
ax.plot(squares, linewidth=3)

ax.set_title("Square Numbers", fontsize=24)
ax.set_xlabel("Value", fontsize=14)
ax.set_ylabel("Square of Value", fontsize=14)

ax.tick_params(axis='both', labelsize=14)

plt.show()

>>>i encountered
AttributeError: 'Text' object has no property 'fontsize'

neilpastilan