spyder-更新
更新spyder版本:conda install spyder=5.0.0安装第三方库,出现timeout error:pip --default-timeout=100 install pandas(100不够改1000)
更新spyder版本:
1.cmd(要找到anaconda的,不是系统的)
2.conda update anaconda
3.conda install spyder=5.0.0
安装第三方库,出现timeout error:
pip --default-timeout=100 install pandas
(100不够改1000)
更新过程中遇到"–user"错误的问题,这是用pip进行安装时遇到的常见问题之一。意味着需要以管理员方式运行:
pip install --user --upgrade geatpy
或者
conda update numpy
更新toad包后,import出错,则更新numpy
pip uninstall numpy
pip install numpy
或者
pip install --upgrade numpy
或者安装指定版本的numpy
pip install numpy1.22.4
pip install toad0.1.1 (不要升级)
查找Mac 安装的第三方库
import sys
print(sys.path)
找到带site-packages 结尾的路径:/opt/anaconda3/lib/python3.9/site-packages
选择访达,然后command+shift +G 输入路径
字体问题 的 解决方式
findfont: Generic family ‘sans-serif’ not found because none of the following families were found: SimHei
修改 matplotlibrc
/opt/anaconda3/lib/python3.9/site-packages/matplotlib/mpl-data/matplotlibrc
font.family : sans-serif
# 去掉前面的#
font.sans-serif : SimHei, Bitstream Vera Sans, Lucida Grande, Verdana, Geneva, Lucid, Arial, Helvetica, Avant Garde, sans-serif
# 去掉前面的#,并在冒号后面添加SimHei
axes.unicode_minus : False
# 去掉前面的#,并将True改为False
scorecardpy 不兼容问题
Number of rows must be a positive integer, not 1.0
这是因为sc.perf_eva
/opt/anaconda3/lib/python3.9/site-packages/scorecardpy
找到perf里面的perf_eva
把最后两行的
plt.subplot(subplot_nrows,subplot_ncols,i+1)
改成
plt.subplot(int(subplot_nrows),int(subplot_ncols),i+1)
查看包的版本
import numpy
numpy.version#注意前后都有两横
更新后如果出现循环无法停止,则更新spicy
pip uninstall spicy
pip install spicy
anaconda的历史版本
https://repo.anaconda.com/archive/
更多推荐
所有评论(0)