• Skip to primary navigation
  • Skip to main content
  • Skip to primary sidebar

Rahul Bodana

Blogger, Programmer & Trader

  • Code
  • Charm
  • Money
  • Write
Home » Code » How to install Python Package using PIP & PYPI

How to install Python Package using PIP & PYPI

June 2, 2020

You can Find and install Python packages with Python package index which is known as PyPi. PyPi has the official website PyPi from there you can install the Python modules on your Computer. However, the installation of the Python Modules is pretty much different as Compare to the installation of the Executables files nonetheless it is much easier. If you are wondering that How to install the Python Modules like NumPy then you are right place. Here in this post, I am Going to show you that How to Install python Package using PIP and PyPI on your Machine.

How to Install python Package using PIP and PYPI

How to install Python Package using PIP & PyPI

Install packages

  1. The first step of Installing any of the packages is to know which Package that you actually want to install. You can browse the pypi.org and look for the module that you need for your Project.
  2. For example, I want to install Flask, For those who don’t know what is a flask. It is a Micro web development framework. So to install I first have to head over to Pypi.org.
  3. Once you’re on the PyPi.Org I’ll use the search bar and search bar.
  4. from the search result, I’ll choose the Flask’s latest version.
  5. On the page, you will see the Something Like pip install Flask. Right next to this text you will see Copy ICON.
  6. Click on the Copy icon and the text will be copied.
  7. Now open the CMD or Powershell and paste this text and press the enter button.

After that installation will be started and you and will be notified when it will be finished.

To confirm that the module installed or not you can Check it by the pip list command. It will show you the list of the installed packages in your Computer.

So that’s how to install Python Package. If you have any questions regarding this post then you can mention in the Comment section.

Share this:

  • Twitter
  • Facebook
  • Reddit
  • Pinterest
  • WhatsApp
  • More
  • Pocket
  • Telegram

Related Articles

Suggested Posts:

  • 10 Best Python Books For Intermediate Programmers
  • How to Set up Python Development Environment in Atom
  • How to Uninstall Python Package using PIP from Windows
  • 9 Best Python Books for Beginners to Learn Python from…
  • How to Install Anaconda on Windows Computer/Laptop/PC
  • Best Python books for Advance Python Programmers
  • How to Install Python on Windows 10/8/7 PC or Laptop

Posted in: Code, Extras

Primary Sidebar

Recent Articles

  • PHP Inheritance: Concept, Override method, Modify & Final keyword
  • PHP Access Modifiers: Types of Specifiers, How to Use with Examples
  • PHP Constructor and Destructor: How to Create in PHP With Examples
  • PHP Classes & Objects: How to Create Classes and Objects in PHP
  • PHP OOP: What is OOP in PHP, Why use, PHP Classes and Objects
  • Evolution of Computers: History, Timeline, Ancient & Modern Computing devices
  • Introduction to Computer: Definition, Need & Functions of Computer

Copyright © 2022 by Rahul Bodana