matplotlib是python里面的一个画图的包,想要使用matplotlib的话,需要先安装python,这里推荐使用anaconda安装虚拟环境安装python。
(1)安装了anaconda之后。打开anaconda prompt
(2)打开之后敲击命令
conda create -n matplotlib python=3.8
安装python
(3)接下来激活创建的环境,这里我们创建的环境名是matplotlib,然后安装matplotlib包
激活环境
activate matplotlib
安装matplotlib包,以下两种方式均可以安装
pip install matplotlib
conda install matplotlib
(4)安装完毕之后,建议再安装jupyter notebook,这样比较方便使用python,画图也方便
conda install jupyter notebook
pip install jupyter
以上两种方式均可安装
(5)接下来就是打开jupyter notebook
这样就可以打开自己想打开的文件夹进行编写程序了
jupyter notebook 路径