...
Note that installation of a Python/R/Julia package is a one-time process. You will not have to re-install it once you have installed it.
...
- Create a new notebook for R by clicking the New drop-down menu at the top right corner and then choosing R. Alternatively, you can open any of your existing notebooks for R.
Write the following code in a new cell of the notebook and run it:
Code Block install.packages(c("PACKAGE_NAME_1", "PACKAGE_NAME_2", ...), repos="http://cran.r-project.org")
- Check if the packages have been successfully installed.
...
- Create a new notebook for Julia by clicking the New drop-down menu at the top right corner and then choosing Julia. Alternatively, you can open any of your existing notebooks for Julia.
Write the following code in a new cell of the notebook and run it:
Note that installation of a package is a one-time process. You will not have to re-install it once you have installed it.Code Block using Pkg Pkg.add.(["PACKAGE_NAME_1", "PACKAGE_NAME_2", ...])
- Check if the packages have been successfully installed.
...