我有一个简单的脚本foo.R
,里面只有一行:
library("argparse")
当我从 bash shell 调用脚本时,出现以下错误:
$r foo.R
Error in library("argparse") : there is no package called ‘argparse’
OTOH,当我调用 Rscript 时,一切似乎都很好:
$ Rscript foo.R
Loading required package: proto
为什么有区别?较小的自述文件没有说明加载库的问题。
我使用从 Ubuntu Universe apt 存储库(例如http:R
//ftp.acc .umu.se/ubuntu/ubuntu/pool/universe/l/littler/ )littler