MacOS下安装unicorn这个库失败

╄→尐↘猪︶ㄣ 提交于 2019-12-06 15:09:11

因为在Mac下安装pwntools,发现安装unicorn库的时候失败了,编译报错如下

    make: *** [qemu/config-host.h-timestamp] Error 1
    error: [Errno 2] No such file or directory: 'libunicorn.dylib'
    ----------------------------------------

那怎么办呢,你能帮帮我吗?
手动安装方法如下:

1 安装unicorn

> brew install unicorn

2 在PyPi下载unicorn源码并安装

链接:https://pypi.org/project/unicorn/#files

> tar -zxf unicorn-1.0.1.tar.gz
> cd unicorn-1.0.1
> cp /usr/local/opt/unicorn/lib/lib* ./prebuilt
> python3 setup.py install

然后就可以了,其实问题的原因是python装unicorn的时候没有找见unicorn的这个库libunicorn.dylib
参考:https://blog.csdn.net/weixin_33853827/article/details/91391206

标签
易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!