Julia - IDE

Hi,

I am looking for a IDE for Julia, I tried atom. any other recommended IDE?

thanks,

You may want to look at Visual Studio Code as well. Both it and Juno/Atom have their own advantages and disadvantages.

3 Likes

I haven’t used it but there is now also JupyterLab: JupyterLab (beta) is out. Anyone tried it?

Other than Juno, a common Julia IDE is Jupyter. The core product is Jupyter notebooks, but the latest Jupyter lab seems like an improvement (still in Beta).

For Jupyter lab

conda install -c conda-forge jupyterlab

or

pip install jupyterlab

and for Jupyter notebook it is usually installed with Conda/Anaconda called with

jupyter notebook
1 Like