From cc1ca8f37f0be47c7e2f4f2e8329761e401df205 Mon Sep 17 00:00:00 2001 From: taoky Date: Sun, 12 Nov 2023 18:37:24 +0800 Subject: [PATCH] CRAN: typo fix --- source/CRAN.rst | 11 ++++------- 1 file changed, 4 insertions(+), 7 deletions(-) diff --git a/source/CRAN.rst b/source/CRAN.rst index 0390b03d..a7ca384d 100644 --- a/source/CRAN.rst +++ b/source/CRAN.rst @@ -5,14 +5,11 @@ CRAN 镜像使用帮助 使用说明 ======== -在第一次执行 ``install.package("xxx")`` 时会弹出窗口让你选择镜像,此时选择 -China Hefei 即可。 +在第一次执行 ``install.packages("xxx")`` 时会弹出窗口让你选择镜像,此时选择 China (Hefei) 即可。 也可以通过 ``chooseCRANmirror()`` 来打开窗口,或者 ``options(repos = c(USTC="https://mirrors.ustc.edu.cn/CRAN/"))`` 这个选项来开启 USTC 镜像。 - -如果不希望每次打开 R 都必须选择镜像,可以修改 ``$R_home/library/base/R/Rprofile`` 文件的第(28)行( ``$R_home`` 可以在 R 中执行 ``R.home()`` 得到): -将 +如果不希望每次打开 R 都必须选择镜像,可以修改 ``$R_home/library/base/R/Rprofile`` 文件的第 28 行(\ ``$R_home`` 可以在 R 中执行 ``R.home()`` 得到),将 .. code-block:: text @@ -24,13 +21,13 @@ China Hefei 即可。 options(repos = c(USTC="https://mirrors.ustc.edu.cn/CRAN/")) -在 Linux 系统下,普通用户可能没有 ``$R_home`` 目录的修改权限,此时可以执行 +在 Linux 系统下,普通用户可能没有 ``$R_home`` 目录的修改权限,此时可以执行: .. code-block:: text echo 'options(repos=c(USTC="https://mirrors.ustc.edu.cn/CRAN/"))' >> ~/.Rprofile -以设置当前登录用户的 R 镜像 +以设置当前登录用户的 R 镜像。 相关链接 ========