编辑:我使用的是赢得10和Ubuntu从App Store
我试图通过使用安装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'
我更确信我已经错误地理解函数的最后一部分,所以请让我知道正确的语法。