python编程报错
春风惹人醉
这个作者很懒,什么都没留下…
展开
-
【Github】报错:It looks like you don‘t have write access to github to XXX. If you should, please check w
【Github】报错:It looks like you don’t have write access to github to XXX. If you should, please check with a a repository administrator.原创 2023-03-29 17:02:18 · 593 阅读 · 1 评论 -
Conda更新报错:requests.exceptions.HTTPError: 404 Client Error: Not Found for url: https://mirrors.tuna.t
conda更新报错;除了常见的代理导致的问题,纪念第一次遇到此类错误原创 2023-02-28 20:42:59 · 6775 阅读 · 4 评论 -
【已解决】Python安装TensorFlow报错“Consider adding this directory to PATH or, if you prefer to suppress this
【已解决】Python安装TensorFlow报错“Consider adding this directory to PATH or, if you prefer to suppress this warning, use --no-warn-script-location.”现象:使用pip命令安装tf时出现报错,开始遇到了小问题,后来按照网上的指导:使用管理员身份打开终端执行命令解决成功。看似要成功时,却在最后一步里出现了报错:Consider adding this directory to P原创 2021-04-30 14:20:31 · 13344 阅读 · 4 评论 -
Python报错:ImportError: cannot import name XXX
Python报错:ImportError: cannot import name XXX起因:在使用sklearn部分包库时出现该问题。尝试多种方法无果。解释及解决方法语句中涉及的包库和已安装的包库出现了版本不一致的问题。比如你导入的包库来自最新版的文档中,而你的包库还停留在上一版本之中。因此只需要安装最新的包库即可,我尝试了更新好像不能解决问题。也许卸载包库重新安装,是一种可靠的方案。...原创 2021-02-06 01:35:38 · 3487 阅读 · 0 评论 -
Python中报错提示TypeError: ‘function’ object is not subscriptable
Python中报错提示TypeError: ‘function’ object is not subscriptable在构建一个矩阵时,最后一列为了得到一个值全为1的矩阵使用了如下代码:np.hstack(a,b,np.ones[n,1])得到报错:TypeError: ‘function’ object is not subscriptable由于实际代码里a,b写得比较复杂,一直以为是前面的a,b出了错。仔细检查发现,错误来源于np.ones([n,1])上网查了资料后的总结:Type原创 2021-02-06 01:29:07 · 956 阅读 · 0 评论 -
Python中报错提示ValueError: setting an array element with a sequence.
Python中报错提示ValueError: setting an array element with a sequence.出错位置:x[k] = xj @ bj# 其中xj是一个 n*2 的矩阵,bj:2*1显然出现在了矩阵的维数,这也不是我想要的结果。于是按照正确的模型算法将代码写为如下,并运行成功:x[k] = xj[k,:] @ bjValueError: matmul: Input operand 1 has a mismatch in its core dimension原创 2021-02-06 01:28:06 · 1546 阅读 · 0 评论 -
Python中报错提示ValueError: operands could not be broadcast together with shapes
Python中报错提示ValueError: operands could not be broadcast together with shapes (15,1) (14,1)做乘法时维数出现了错误。方法:检查乘号左右的维数,做出更改原创 2021-02-06 01:27:27 · 7395 阅读 · 0 评论 -
Python中报错提示TypeError: \**** takes no arguments
Python中报错提示TypeError: **** takes no argumentspython 、面向对象编程、 类的属性在运用pycharm软件时实例化一个类后,在使用中出现上述报错。开始以为是传参出现了问题,仔细发现并没有。通过仔细盘查和上网查资料.问题根源:误将def __init__写成了def __int__方法:只需相应更改即可。...原创 2021-02-06 01:26:51 · 2987 阅读 · 2 评论 -
Python中报错提示ValueError: operands could not be broadcast together with shapes (15,1) (14,1)
Python中报错提示ValueError: operands could not be broadcast together with shapes (15,1) (14,1)做乘法时维数出现了错误。方法:检查乘号左右的维数,做出更改原创 2020-11-07 14:34:41 · 2251 阅读 · 0 评论 -
Python中报错提示TypeError: \**** takes no arguments
Python中报错提示TypeError: **** takes no argumentspython 面向对象编程 类的属性在运用pycharm软件时实例化一个类后,在使用中出现上述报错。开始以为是传参出现了问题,仔细发现并没有。通过仔细盘查和上网查资料.问题根源:误将def __init__写成了def __int__方法:只需相应更改即可。...原创 2020-11-07 14:33:42 · 968 阅读 · 0 评论