Difference between revisions of "Installing Conda/Jupyter and Language Kernals"

From ZCubes Wiki
Jump to navigation Jump to search
Line 12: Line 12:
 
==R Language==
 
==R Language==
 
To work with R, it is recommended to install [https://posit.co/downloads/ R Studio].
 
To work with R, it is recommended to install [https://posit.co/downloads/ R Studio].
 +
 +
[https://github.com/IRkernel/IRkernel 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.
 +
 +
<code>
 +
install.packages('IRkernel')
 +
IRkernel::installspec()  # to register the kernel in the current R installation
 +
 +
</code>

Revision as of 14:46, 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