Jupyter Notebook or Pycharm for Data science ?

For a Beginner who is studying data science it is a bit confusion for him to what tool should he/she use while practicing data science .

Well majority of data scientists use the jupyter Notebook for there analysis from earlier days of there career .

To install the jupyter Notebook in your system let us setup environment for it to run

  1. Open command prompt and run below commands individually

  2. pip install notebook

  3. pip install voila

  4. pip install jupyterlab

  1. After running all above commands type jupyter lab and hit enter
  1. You will see a + icon on top left hit on it and select python 3 below the Notebook

Screenshot 2022-10-25 122414.jpg

Now you can write a python code in it and press shift+enter to run the line of code

Data Scientists use this because it is easy to record each and every step of the data analysis and also this records also include images ,text,code etc

It also generates plots and tables within the file

It is a browser based application

NOTE :- Do not close the command prompt while you are using the jupyter lab or else the notebook will be interepted , After completion of your work in jupyter lab close the tab and in command prompt press ctrl+c to close the connection