Jupyter Lab is an excellent tool which allows you to develop Python code interactively. This is a great way to learn the language as you can test short snippets of code and see the output immediately.
Assuming you have python installed, installing Jupyter Lab should be as easy fairly easy.
This guide provides a great overview - take a look at this if the steps below don't work for you.
$ conda install jupyterlabIn order to use your virtual environments with jupyter lab, there are a few more steps:
$ conda activate venv
(venv)$ conda install ipykernel
(venv)$ ipython kernel install --user --name=<any_name_for_kernel>
(venv)$ conda deactivate$ pip install jupyterlabIn order to use your virtual environments with jupyter lab, there are a few more steps:
$ source venv/bin/activate
(venv)$ pip install ipykernel
(venv)$ python -m ipykernel install --name=<any_name_for_kernel>
(venv)$ deactivateOnce you have got Jupyter Lab installed, it can be run from the command line:
$ jupyter labThis should open up a webpage in your browser.