前言
本文主要用来记录自己近期踩坑的一些复盘。其中坑有:
- ‘.supxlabel’ 不起作用的解决
- pip list 与 conda list 下面包版本不一致
- conda install/update/remove [packname] 无法生效及报错等。
- 重新安装anaconda后找开jupyter notebook运行代码没反应且in[ ]没有*
解决方案中主要是:anaconda的卸载与安装,因此本文包括这部分内容。
一、起因:如何一步步走到卸载重装anaconda?
为何要卸载anaconda与重新安装?
原因:这一切都要从调用import matplotlib.pyplot as plt中的’.supxlabel’ 不起作用说起。文章来源:https://www.toymoban.com/news/detail-702900.html
具体过程:
1、运行下面的代码:文章来源地址https://www.toymoban.com/news/detail-702900.html
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
到了这里,关于【python基础】——Anaconda下包更新的坑及安装与卸载、及安装后Jupyter Notebook没反应的解决方法的文章就介绍完了。如果您还想了解更多内容,请在右上角搜索TOY模板网以前的文章或继续浏览下面的相关文章,希望大家以后多多支持TOY模板网!