当我尝试从http://ab-initio.mit.edu/nlopt/nlopt-2.4.2.tar.gz安装 R 包nlopt-2.4.2.tar.gz时,使用sudo R CMD INSTALL nlopt-2.4 .2.tar.gz,我收到以下错误:
untar2 中的错误(tarfile、文件、列表、exdir、restore_times):
不支持的条目类型“”</p>
当我尝试从http://ab-initio.mit.edu/nlopt/nlopt-2.4.2.tar.gz安装 R 包nlopt-2.4.2.tar.gz时,使用sudo R CMD INSTALL nlopt-2.4 .2.tar.gz,我收到以下错误:
untar2 中的错误(tarfile、文件、列表、exdir、restore_times):
不支持的条目类型“”</p>
这不是R 包!
如果您执行 tar, zip 舞蹈:
tar xvfz nlopt-2.4.2.tar.gz
并查看自述文件,您会得到:
NLopt 是一个用于非线性局部和全局优化的库,适用于有和没有梯度信息的函数。它被设计为简单、统一的接口和几个免费/开源非线性优化库的封装。
最新版本和完整手册可在 NLopt 主页上找到:http: //ab-initio.mit.edu/nlopt
它使用标准的 GNU autoconf/automake 命令编译和安装:
./configure make make install
-- 剪辑 --