Skip to content

Commit

Permalink
CRAN: typo fix
Browse files Browse the repository at this point in the history
  • Loading branch information
taoky committed Nov 12, 2023
1 parent d801ffc commit cc1ca8f
Showing 1 changed file with 4 additions and 7 deletions.
11 changes: 4 additions & 7 deletions source/CRAN.rst
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand All @@ -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 镜像

相关链接
========
Expand Down

0 comments on commit cc1ca8f

Please sign in to comment.