Git Product home page Git Product logo

python-p3-pypi's Introduction

PyPi and Pip

Learning Goals

  • Installing packages using pip.

Key Vocab

  • Module: a file containing Python definitions and statements. A module's functions, classes, and global variables can be accessed by other modules.
  • Package: a collection of modules that can be accessed as a group using the package name.
  • import: the Python keyword used to access data from other packages and modules inside of the current module.
  • PyPI: the Python Package Index. A repository of Python packages that can be downloaded and made available to your application.
  • pip: the command line tool used to download packages from PyPI. pip is installed on your computer automatically when you download Python.
  • Virtual Environment: a collection of modules, packages, and scripts that can be activated or deactivated at any time.
  • Pipenv: a virtual environment tool that uses pip to manage the modules, packages, and scripts that you intend to use in your application.

Introduction

Package Installer for Python (Pip) is the default package manager for python and is used to install and manage software packages. It uses an online repository called Python Package Index (PyPi).

We can search PyPi for libraries using the search bar on the site.

Example image for uploader

Installing Packages using Pip

We can use the Pip command to install python packages from the Python Package Index (PyPi). Lets practice this using a package called requests. Requests is a HTTP library for the Python programming language.

pip install requests

Now we have access to the requests module. It can be imported in our python programs.

$ python
>>> import requests

To install a specific version of the module we can use pip install

pip install requests==2.22.0

Requirements files are files containing a list of modules to be installed using pip install.

pip install -r requirements.txt

Constraints files are requirements files that only control which version of a requirement is installed, not whether it is installed or not.

pip install -c constraints.txt

Example of a requirements.txt or constraints.txt file.

requests==2.28.1
uvicorn==0.18.2
fastapi==0.79.0

To uninstall a package

pip uninstall requests

Conclusion

Pip can be used to install packages from the Python Package Index. It gives us access to many libraries to help us develop.


Resources

python-p3-pypi's People

Contributors

pgill97 avatar

Watchers

 avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.