文章目录
- 前言
- 一、起因:如何一步步走到卸载重装anaconda?
- 二、卸载anaconda
- 二、重新安装anaconda
- 三、关于安装Anaconda后,打开Jupyter Notebook运行代码没反应且in[ ]没有*
前言
本文主要用来记录自己近期踩坑的一些复盘。其中坑有:
- ‘.supxlabel’ 不起作用的解决
- pip list 与 conda list 下面包版本不一致
- conda install/update/remove [packname] 无法生效及报错等。
- 重新安装anaconda后找开jupyter notebook运行代码没反应且in[ ]没有*
解决方案中主要是:anaconda的卸载与安装,因此本文包括这部分内容。
一、起因:如何一步步走到卸载重装anaconda?
为何要卸载anaconda与重新安装?
原因:这一切都要从调用import matplotlib.pyplot as plt中的’.supxlabel’ 不起作用说起。
具体过程:
1、运行下面的代码:
import numpy as np
import matplotlib.pyplot as plt #准备数据
x=np.linspace(-np.pi,np.pi,100)
y=np.sin(x)fig=plt.figure()#画布设置
fig.suptitle("figtitle", x=0.5, y=0.98)
fig.supxlabel("figxlabel", x=0.5, y=0.02)
fig.supylabel("figylabel", x=0.02, y=0.5)
fig.subplots_adjust(wspace=0.5,hspace=0.5)
fig.tight_layout(pad=2)ax1=fig.add_subplot(2,