当我使用不同的系统时出现python错误!

发布于 2024-09-12 03:18:51 字数 761 浏览 5 评论 0原文

当我使用我的系统时,我的Python代码没有错误。当我使用另一个系统时,我收到此错误:(两个系统都有相同版本的 python)

/usr/lib/pymodules/python2.6/matplotlib/numerix/__init__.py:18: DeprecationWarning: 
**********************************************************
matplotlib.numerix and all its subpackages are deprecated.
They will be removed soon.  Please use numpy instead.
**********************************************************

  warnings.warn(msg, DeprecationWarning)
/usr/lib/pymodules/python2.6/networkx/generators/hybrid.py:16: DeprecationWarning: the sets module is deprecated
  import sets
Traceback (most recent call last):
  File "./check_2.py", line 79, in <module>
    G.add_edge(u,v,times=[t])
TypeError: add_edge() got an unexpected keyword argument 'times'

When I use my system, there is no error in my python codes. When I use another system I get this error:(both systems have same version of python)

/usr/lib/pymodules/python2.6/matplotlib/numerix/__init__.py:18: DeprecationWarning: 
**********************************************************
matplotlib.numerix and all its subpackages are deprecated.
They will be removed soon.  Please use numpy instead.
**********************************************************

  warnings.warn(msg, DeprecationWarning)
/usr/lib/pymodules/python2.6/networkx/generators/hybrid.py:16: DeprecationWarning: the sets module is deprecated
  import sets
Traceback (most recent call last):
  File "./check_2.py", line 79, in <module>
    G.add_edge(u,v,times=[t])
TypeError: add_edge() got an unexpected keyword argument 'times'

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

梦里°也失望 2024-09-19 03:18:51

有一个提示。

matplotlib.numerix and all its subpackages are deprecated.
They will be removed soon.  Please use numpy instead.

出现此错误的系统安装了旧软件包。

虽然“python 版本”可能相同,但安装的软件包集不同。

There's a hint.

matplotlib.numerix and all its subpackages are deprecated.
They will be removed soon.  Please use numpy instead.

The system that gets this error has old packages installed.

While the "version of python" may be the same, the set of installed packages is different.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文