Posts

Showing posts from October, 2020

Learn Pandas ( Data Analysis Library) -

Image
Summery What is Pandas? Setup and Installation Create virtualenv Install Pandas Install Jupyter Notebook Sample Examples: What is Pandas? In computer programming, 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. It is free software released under the three-clause BSD license. Best Python Training in Gurgaon... Setup and Installation Before we understanding some features of Pandas, let’s get Pandas installed in your system. I would like to recommend you to create a virtual environment and install Pandas inside the virtualenv. Create virtualenv # virtualenv -p python3 env1 # source env1/bin/activate Install Pandas # pip install pandas Jupyter Notebook If you are learning Pandas, I would recommend you to dive in and use a jupyter notebook. The visualization of data in jupyter notebooks makes it ...

What is Django and How to Install It?

Image
Django is a high-level Python Web framework that encourages rapid development and clean, pragmatic design. Built by experienced developers, it takes care of much of the hassle of Web development, so you can focus on writing your app without needing to reinvent the wheel. It’s free and open source. Django adheres to the model template view (MTV) software architectural pattern. The MTV pattern is Django’s take on the model–view–controller (MVC) Pattern. Step 1 — Install Python and pip Before install any software, first update APT repository. Then install software as per your requirements. # sudo apt update Once everything is update now you can install python3 in your machine. # sudo apt install python3 To verify that pip was successfully installed, run the following command: # python3  --version  You should see output similar to this: Now we need to install Pip in order to install package from Pypi (Python package repository). # sudo apt install  pytho...