Difference between revisions of "Installing Conda/Jupyter and Language Kernals"
Jump to navigation
Jump to search
| Line 17: | Line 17: | ||
Basically, it consists of giving these two commands in the R Studio, so IRkernal is connected to Jupyter. | Basically, it consists of giving these two commands in the R Studio, so IRkernal is connected to Jupyter. | ||
| − | < | + | <pre> |
install.packages('IRkernel') | install.packages('IRkernel') | ||
IRkernel::installspec() # to register the kernel in the current R installation | IRkernel::installspec() # to register the kernel in the current R installation | ||
| − | </ | + | </pre> |
Revision as of 14:47, 4 February 2025
Z Bridge to Server Languages
Installing Conda/Jupyter and Language Kernals
ZCubes recommends installing Anaconda (Installation Instructions) to have configurations to Julia, Python, R, and many other kernals .
Python Language
Python comes default with Anaconda and Jupyter, and hence no additional install is needed.
R Language
To work with R, it is recommended to install R Studio.
IR Kernal installation instructions needs to be followed to connect Anaconda/Jupyter with R Platform.
Basically, it consists of giving these two commands in the R Studio, so IRkernal is connected to Jupyter.
install.packages('IRkernel')
IRkernel::installspec() # to register the kernel in the current R installation