将R语言添加至win10环境变量

发布于:2020/10/13 作者:沈大力 浏览量:999+ 评论:0

标签: R语言



我们安装了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.

>

大功告成!

-END-


发布评论:

登录后方可评论,点击登录注册


评论列表:

暂无评论。


苏公网安备 32050602011302号
苏ICP备2020062135号-1
Copyright© Li Shen. All rights reserved.