Alpine有没有允许我安装pycrypto for python 3的软件包?
在遇到问题后,我偶然发现了这篇文章,它解释了使用pip3 install pycryptohow to install numpy in Alpine。也可以使用apk add py-numpy@testing为python2.7安装pycrypto。但是,我似乎不知道如何为python3调用pycrypto,或者即使这个包存在。
作为另一种解决方案,我尝试使用apk add py-crypto安装C编译器gcc,以便apk add gcc中的安装工具可以编译。但是,当我使用gcc运行该命令时,它会抛出一个致命错误:

...
running build_ext
running build_configure
checking for gcc... gcc
checking whether the C compiler works... no
configure: error: in `/tmp/pip-build-2TivSm/pycrypto':
configure: error: C compiler cannot create executables
...

阿尔卑斯山没有编译python3模块的方法吗?

最佳答案

这对我很有用:

apk add gcc g++ make libffi-dev openssl-dev

然后安装PIP。

关于python - PyCrypto for Alpine3 in Alpine?,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/35397295/

10-12 17:03