编辑:我正在使用应用商店中的 Win 10 和 Ubuntu
我尝试使用以下方法安装 gmpy2:
apt-get install libgmp-dev
apt-get install libmpfr-dev
apt-get install libmpc-dev
并且还下载了 MPIR 并编译了它。但是使用pip install gmpy2
仍然给我错误
c:\users\gypsyzz\appdata\local\temp\pip-install-l2hlf7q4\gmpy2\src\gmpy.h(104): fatal error C1083: Cannot open include file: 'mpir.h': No such file or directory
error: command 'C:\\Program Files (x86)\\Microsoft Visual Studio\\2017\\BuildTools\\VC\\Tools\\MSVC\\14.13.26128\\bin\\HostX86\\x64\\cl.exe' failed with exit status 2
此外,我发现使用https://www.lfd.uci.edu/~gohlke/pythonlibs/上的预建轮子并没有给我任何功能。
import gmpy2
from gmpy2 import mpz,mpq,mpfr,mpc
gmpy2.conjugate(mpc())
Traceback (most recent call last):
File "<ipython-input-18-2d51a42bda9a>", line 1, in <module>
gmpy2.conjugate(mpc())
AttributeError: module 'gmpy2' has no attribute 'conjugate'
我更确定我对最后一部分的功能理解错误,所以请让我知道正确的语法。