# pylab安裝 :::info 給想要在本機用vscode練習的同學,如何安裝、使用pylab模組 ::: ### 安裝模組 在windows開始,搜尋命令提示字元,並輸入以下指令: ``` pip install matplotlib ``` * 安裝成功之後將會出現以下畫面 ![](https://i.imgur.com/Ze7aHMc.png) * 如果之前已經安裝成功,會出現以下畫面: ![](https://i.imgur.com/Td2lXNb.png) ### import模組 在程式碼之前加上這行,就可以愉快的使用pylab來算微積分了~ ```python from matplotlib import pylab ```