Now lets download and Install all the required software/packages to get started with our ML model.
First Download latest version of Python from https://www.python.org/downloads/ . Download according to your operating system. Second Download a IDLE to write our code. There are many IDLE’s but I suggest you to Anaconda. Download Anaconda from here https://www.anaconda.com/distribution/ . Open Anaconda and download Jupiter Notebook.
Now you are all set up to start coding your ML model.
You have to Install some Libraries into Anaconda. Open the Anaconda Prompt and type these commands to install required libraries. Pandas Library :
pandas is a software library written for the Python programming language for data manipulation and analysis. In particular, it offers data structures and operations for manipulating numerical tables and time series.
< conda install -c anaconda pandas > type this in conda prompt to install pandas(without the brackets).
NumPy Library :
NumPy is a library for the Python programming language, adding support for large, multi-dimensional arrays and matrices, along with a large collection of high-level mathematical functions to operate on these arrays.
< conda install -c anaconda numpy > type this in conda prompt to install pandas(without the brackets).
That’s it for now if there are any other packages required I will guide those installation during our model.
STAY WITH ME TO LEARN MACHINE LEARNING also share this blog with your friends.

One thought on “Setting up environment for ML”