Octave 4.2.2和sympy 1.6

问题描述 投票:0回答:1

我正在尝试将Octave 4.2.2与Symbolic pkg v.2.9.0一起使用,但出现与sympy软件包有关的错误:

Your kit looks good for running the Symbolic package.  Happy hacking!

>>
>> syms
Symbolic variables in current scope:
>> a = sym( "a" );
Symbolic pkg v2.9.0: /home/usuario/.local/lib/python3.6/site-packages/sympy/__init__.py:676: SymPyDeprecationWarning:

importing sympy.core.compatibility with 'from sympy import *' has been
deprecated since SymPy 1.6. Use import sympy.core.compatibility
instead. See https://github.com/sympy/sympy/issues/18245 for more
info.

  deprecated_since_version="1.6").warn()
Traceback (most recent call last):
  File "<stdin>", line 1, in <module>
  File "<stdin>", line 12, in octoutput_drv
  File "<stdin>", line 54, in octoutput
  File "<stdin>", line 55, in octoutput
  File "/home/usuario/.local/lib/python3.6/site-packages/sympy/__init__.py", line 677, in __getattr__
    return getattr(self.mod, name)
AttributeError: module 'sympy.core.compatibility' has no attribute 'integer_types'
Waiting................warning: readblock: timeout of 30 exceeded, breaking out
warning: called from
    readblock at line 101 column 7
    python_ipc_popen2 at line 99 column 14
    python_ipc_driver at line 62 column 13
    pycall_sympy__ at line 163 column 9
    sym at line 452 column 9
no output so far

error: ipc_popen2: something wrong? timed out starting python
error: called from
    python_ipc_popen2 at line 101 column 7
    python_ipc_driver at line 62 column 13
    pycall_sympy__ at line 163 column 9
    sym at line 452 column 9
>> a
error: 'a' undefined near line 1 column 1
>>

我深入研究代码并找到这两个引用:

https://github.com/sympy/sympy/pull/18245https://github.com/sympy/sympy/pull/19316

但是我不是程序员,所以非常感谢任何想法。

我试图卸载sympy-1.6并安装sympy-1.5,但这不起作用。

感谢您的时间。

丹尼尔

octave sympy
1个回答
0
投票

我设法找到了答案。问题是在sympy 1.6版上,因此我使用pip3将其降级到1.5.1版。

© www.soinside.com 2019 - 2024. All rights reserved.