做个记录,这个测试了,是可以解决问题。
无法安装报错sodium.h: No such file or directory
解决办法
- 下载
wget https://download.libsodium.org/libsodium/releases/libsodium-1.0.18-stable.tar.gz
tar -zxf libsodium-1.0.18-stable.tar.gz
cd libsodium-stable
- 编译
./configure --prefix=/usr
make && make check
sudo make install
sudo ldconfig
如出现以下错误:
config.status: error: Something went wrong bootstrapping makefile fragments
for automatic dependency tracking. Try re-running configure with the
'--disable-dependency-tracking' option to at least be able to build
the package (albeit without support for automatic dependency tracking).
执行
yum install make -y