摘要:
虽然我们一般不会用CMD来写R代码,但有的时候需要用到Rscript执行R脚本。因此将R和Rscript添加至win10环境变量还是很有必要的。
我们安装了R语言后,如果直接在CMD中输入R,系统会返回:
D:\>R
'R' is not recognized as an internal or external command,
operable program or batch file.
这说明R并没有写入windows的环境变量中去。所以我们得手动添加。
假设R语言的路径为“C:\Program Files\R\R-3.6.2”,R.exe和Rscript.exe在bin文件夹中。
第一步:
右击“我的电脑”,点击“属性”。
第二步:
点击右边的“高级”,然后点击右下角的“环境变量”。
第三步:
点击“新建”,变量名称填写“R_HOME”,变量值填写“C:\Program Files\R\R-3.6.2”,然后保存。
第四步:
点击“PATH”,然后点击“新建”,填入“%R_HOME%\bin”。
第五步:
新建环境变量,名称:“R_classpath”,值:“%R_HOME%\bin\R;%R_HOME%\bin\Rscript;”,然后保存。
现在可以重新打开CMD测试一下:
C:\Users\HX-JTA>R
R version 3.6.2 (2019-12-12) -- "Dark and Stormy Night"
Copyright (C) 2019 The R Foundation for Statistical Computing
Platform: x86_64-w64-mingw32/x64 (64-bit)
R is free software and comes with ABSOLUTELY NO WARRANTY.
You are welcome to redistribute it under certain conditions.
Type 'license()' or 'licence()' for distribution details.
R is a collaborative project with many contributors.
Type 'contributors()' for more information and
'citation()' on how to cite R or R packages in publications.
Type 'demo()' for some demos, 'help()' for on-line help, or
'help.start()' for an HTML browser interface to help.
Type 'q()' to quit R.
>
大功告成!