quot;OverflowError: Python int too large to convert to C longquot; on windows but not mac(“OverflowError: Python int too large to convert to C long在 windows 上但不是 mac)
问题描述
我在 windows 和 mac 上运行完全相同的代码,使用 python 3.5 64 位.
I am running the exact same code on both windows and mac, with python 3.5 64 bit.
在 Windows 上,它看起来像这样:
On windows, it looks like this:
>>> import numpy as np
>>> preds = np.zeros((1, 3), dtype=int)
>>> p = [6802256107, 5017549029, 3745804973]
>>> preds[0] = p
Traceback (most recent call last):
File "<pyshell#13>", line 1, in <module>
preds[0] = p
OverflowError: Python int too large to convert to C long
但是,这段代码在我的 mac 上运行良好.任何人都可以帮助解释原因或为 Windows 上的代码提供解决方案吗?非常感谢!
However, this code works fine on my mac. Could anyone help explain why or give a solution for the code on windows? Thanks so much!
推荐答案
一旦你的数字大于 sys.maxsize
,你就会得到这个错误:
You'll get that error once your numbers are greater than sys.maxsize
:
>>> p = [sys.maxsize]
>>> preds[0] = p
>>> p = [sys.maxsize+1]
>>> preds[0] = p
Traceback (most recent call last):
File "<stdin>", line 1, in <module>
OverflowError: Python int too large to convert to C long
您可以通过检查来确认:
You can confirm this by checking:
>>> import sys
>>> sys.maxsize
2147483647
要获取更高精度的数字,请不要传递在后台使用有界 C 整数的 int 类型.使用默认浮点数:
To take numbers with larger precision, don't pass an int type which uses a bounded C integer behind the scenes. Use the default float:
>>> preds = np.zeros((1, 3))
这篇关于“OverflowError: Python int too large to convert to C long"在 windows 上但不是 mac的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:“OverflowError: Python int too large to convert to C long"在 windows 上但不是 mac


基础教程推荐
- Python kivy 入口点 inflateRest2 无法定位 libpng16-16.dll 2022-01-01
- 筛选NumPy数组 2022-01-01
- 用于分类数据的跳跃记号标签 2022-01-01
- 如何在海运重新绘制中自定义标题和y标签 2022-01-01
- Dask.array.套用_沿_轴:由于额外的元素([1]),使用dask.array的每一行作为另一个函数的输入失败 2022-01-01
- 线程时出现 msgbox 错误,GUI 块 2022-01-01
- 在 Python 中,如果我在一个“with"中返回.块,文件还会关闭吗? 2022-01-01
- 使用PyInstaller后在Windows中打开可执行文件时出错 2022-01-01
- 如何让 python 脚本监听来自另一个脚本的输入 2022-01-01
- 何时使用 os.name、sys.platform 或 platform.system? 2022-01-01