缘起
在mac下安装 rasa 时,我竟然没想到会安装很久,而这安装过程真的很久很长(大概3小时),这其中很多是因为电信在人多的时候用时,网速只有几K/s (无力吐槽) ,深夜能达到 6.2MB/s
这其中也遇到其他一些依赖问题,rasa 里面的一些部分依赖我曾经安装过,现在需要根据rasa版本重新安装,却有卸载不掉,手动清理了两个依赖不能卸载的,发现后面还有,然后觉得不能这么搞下去,索性想了下,直接创建个新的虚拟环境 (conda 创建)
这些大概就一小时多过去了..... 这段时间还是做了很多事情
不过接下来的时间就是 安装 ujson。 不过一开始并没有发现时 ujson 依赖的问题,安装执行到某一步就报错,报错 重要内容是:
clang: warning: libstdc++ is deprecated; move to libc++ with a minimum deployment target of OS X 10.9 [-Wdeprecated]
clang: warning: libstdc++ is deprecated; move to libc++ with a minimum deployment target of OS X 10.9 [-Wdeprecated]
ld: library not found for -lstdc++
clang: error: linker command failed with exit code 1 (use -v to see invocation)
error: command 'g++' failed with exit status 1
----------------------------------------
Failed building wheel for ujson
Running setup.py clean for ujson
Running setup.py bdist_wheel for termcolor ... done
直到这里才发现 ujson 这个依赖不太好安装
正文
看了错误信息,直接 去网上找相关的信息,不过真的不多,唯一找到一个跟我一样错误的博客[]在 Mojave 下编译 SpiderMonkey
不过没有按照他的解决方式去解决,搜了下 deployment target ,一头雾水,不知怎么设置
日志里 出现 macosx-10.7, 但我系统是10.14,然后想根据这个查相关信息,结果还是无果
running install
running build
running build_ext
building 'ujson' extension
creating build
creating build/temp.macosx-10.7-x86_64-3.6
creating build/temp.macosx-10.7-x86_64-3.6/deps
creating build/temp.macosx-10.7-x86_64-3.6/deps/double-conversion
creating build/temp.macosx-10.7-x86_64-3.6/deps/double-conversion/double-conversion
creating build/temp.macosx-10.7-x86_64-3.6/lib
creating build/temp.macosx-10.7-x86_64-3.6/python
也去pypi 下载了 ujson 的源码包,单独安装来观察, 设置了 C_INCLUDE_PATH
跟 LIBRARY_PATH
环境变量,也还是不行
也搞过 xcode 相关的,安装了相关工具,然后再重新安装也不行
最后还是不知道怎么搜索下conda install ,然后使用 conda install ujson
, 结果一路顺畅, 最后rasa不出意外的 愉快的安装成功
---最后想说: 遇依赖问题,请使用conda安装,不用浪费那么多时间花在解决依赖问题上....