The first step in getting started in this journey is to learn Python. As mentioned in my earlier post, Python is one of the easiest programming languages to learn. It has lots of features that makes a programmers' life easy.
Conda install
We will be using Anaconda distribution to install latest version of Python and associated ML / Data science related libraries. It is easy to setup in all the environments - Windows / Mac / Linux; and easy to use as well.
Visit the Conda link, download the appropriate version of Anaconda distribution and follow the on-screen instructions to setup and install Python:
Once Conda distribution is installed, you can access Jupyter notebooks via command prompt.
Go to Start menu and type 'Anaconda prompt'. You will get a command prompt.
Within the command prompt type 'Jupyter notebook'
You can open Jupyter notebook from any of the folders in your system. Once you open from a particular folder, you will be able to access / save files from or to that corresponding location. A new browser window will open displaying the contents of the directory. You can also note the version of Python that is installed and create new notebooks accordingly.
Hello world program
Your first hello world program - it is quite straight-forward and easy to execute. Here is the screenshot of the same:
print('Hello World')
You can rename the notebook, setup keyboard shortcuts, save, execute statements, etc. Feel free to explore the notebook interface to get a feel of the working environment.
Explore the documentation for more details.
In the next post, we will start exploring more about Python as a programming language and then further down the line, we will move towards exploring the data science aspects of Python.