有人可以给出如何在Linux环境中安装剪辑然后安装剪辑的分步过程吗? pip install clipspy
对我不起作用,因为我的组织不允许 pip。我需要从源代码构建。
我尝试从clipspy-0.3.0
python setup.py install
但编译终止。
gcc -pthread -B /anaconda3/compiler_compat -Wl,--sysroot=/ -DNDEBUG -g -fwrapv -O3 -Wall -Wstrict-prototypes /clips_core_source_630/core/ -fPIC -Ic -Itmpclips_core_source_630core -I/anaconda3/include/python3.6m -c build/temp.linux-x86_64-3.6/_clips.c -o build/temp.linux-x86_64-3.6/build/temp.linux-x86_64-3.6/_clips.o
build/temp.linux-x86_64-3.6/_clips.c:523:19: fatal error: clips.h: No such file or directory
#include <clips.h>
^
compilation terminated.
我知道我必须安装 clips_6.30,但 src 代码中有很多制作文件
clips_core_source_630/makefiles> ls
makefile.g++ makefile.gcc makefile.lib makefile.lib++ makefile.win
我在c/c++
技术方面没有经验,也无法理解clips_core_source_630
中存在的各种makefile。
您可以查看clipspy
travis 安装脚本以获取参考示例。
提取 CLIPS 存档后,您可以将makefile.lib
文件复制到源文件夹中。
然后,您需要稍微修改生成文件以将剪辑构建为共享库。为此,请将 -fPIC
标志添加到 gcc
编译命令。这将生成几个适合包含在库中的.o
文件。
使用 make
命令生成源。然后,可以将对象文件链接在一起以生成库文件。
ld -G *.o -o libclips.so
完成后,您可以构建和安装 clipspy
,确保您拥有最新的 cffi
并setuptools
Python 模块。
python setup.py build_ext --include-dirs <clips_dir>/core/ --library-dirs <clips_dir>/core/
python setup.py install