1
0
mirror of https://github.com/kamranahmedse/developer-roadmap.git synced 2025-09-02 13:52:46 +02:00

Add package managers resources

This commit is contained in:
Kamran Ahmed
2022-08-13 18:45:50 +04:00
parent fc403684e6
commit bfcba72bae
3 changed files with 20 additions and 3 deletions

View File

@@ -1 +1,9 @@
# Pypi
# PyPI
PyPI, typically pronounced pie-pee-eye, is a repository containing several hundred thousand packages. These range from trivial Hello, World implementations to advanced deep learning libraries.
<ResourceGroupTitle>Free Content</ResourceGroupTitle>
<BadgeLink colorScheme='blue' badgeText='Official Website' href='https://pypi.org/'>PyPI Official Website</BadgeLink>
<BadgeLink colorScheme='red' badgeText='Watch' href='https://www.youtube.com/watch?v=bPSfNKvhooA'>Getting Started with Pip and PyPI in Python</BadgeLink>
<BadgeLink colorScheme='yellow' badgeText='Read' href='https://realpython.com/pypi-publish-python-package/'>How to Publish an Open-Source Python Package to PyPI</BadgeLink>

View File

@@ -1 +1,8 @@
# Pip
# Pip
The standard package manager for Python is pip. It allows you to install and manage packages that arent part of the Python standard library.
<ResourceGroupTitle>Free Content</ResourceGroupTitle>
<BadgeLink colorScheme='yellow' badgeText='Read' href='https://realpython.com/what-is-pip/'>Using Python's pip to Manage Your Projects' Dependencies</BadgeLink>
<BadgeLink colorScheme='yellow' badgeText='Read' href='https://www.w3schools.com/python/python_pip.asp'>Python PIP Introduction</BadgeLink>

View File

@@ -1 +1,3 @@
# Python package managers
# Package Managers
Package managers allow you to manage the dependencies (external code written by you or someone else) that your project needs to work correctly.