Python 은 초보자를 위한 단순한 프로그래밍 언어가 아닙니다. Python은 주변에 생성된 수많은 타사 패키지와 라이브러리가 있는 강력하고 완전한 언어입니다. 모든 것을 직접 코딩하는 대신 이러한 타사 패키지를 배포하고 자체 코딩 프로젝트의 일부로 사용할 수 있습니다.
GitHub(searching GitHub) 또는 웹 을 검색하여 찾을 수 있지만 대신 PIP , Python 용 패키지 관리자를 사용 하여 이를 수행할 수도 있습니다. PIP 를 사용하면 수천 개의 패키지를 사용할 수 있는 Python 패키지 색인 에서 (Python Package Index)Python PIP 패키지 를 검색하고 설치할 수 있습니다.
PIP란 무엇입니까?(What Is PIP?)
PIP 또는 P ython 용 패키지 설치 프로그램 (P)을 사용하면 (I)Python 패키지 색인(Python Package Index) 에서 사용할 수 있는 Python 패키지 의 중앙 저장소에서 패키지를 설치할 수 있습니다 . 간단히 말해서 Python 용 앱 스토어 역할을 하므로 직접 찾을 필요 없이 명령줄이나 터미널에서 Python 패키지 를 설치할 수 있습니다 .
Linux 사용자는 이미 이 프로세스에 익숙할 것입니다. 패키지 관리자는 Linux 사용자 경험 의 필수적인 부분이며 APT , Pacman 및 기타를 사용 하면 터미널 창에서 다양한 Linux 배포판 에 다른 소프트웨어를 설치할 수 있습니다 .
PIP 사용을 시작하려면 먼저 (PIP)Python 을 설치해야 합니다 . macOS 및 대부분의 Linux 배포판에는 Python 이 이미 설치되어 있지만 (Python)Windows 10 에서는 수동으로 설치해야 합니다 . Linux 배포판에 (Linux)Python 이 설치되어 있지 않은 경우 (또는 Python의 이전 버전이 있는 경우 )(Python) 배포판의 패키지 관리자를 사용하여 이 작업을 수행해야 합니다.
Linux에 Python PIP 설치(Installing Python PIP On Linux)
python-pip 패키지 는 변형과 마찬가지로 모든 주요 Linux 배포판 에 대해 다운로드 및 설치할 수 있습니다 . Linux 배포판 에 따라 Python 3.x 시리즈 가 아닌 Python 2.x 시리즈 를 계속 사용하는 경우 python2-pip 패키지 를 설치해야 할 수 있습니다 .
Python 3.4 이상(또는 Python 2.7.9 이상)을 사용 하는 경우 Linux 에 (Linux)PIP 가 이미 설치되어 있으므로 설치할 필요가 없습니다. 터미널 창을 열고 python3 –version 을 입력하여 설치된 Python 버전을 확인한 다음 python -m pip 또는 python3 -m pip 를 사용하여 이를 확인합니다.
Python 버전 2.7.9 또는 3.4 미만 의 경우 Linux 에 (Linux)Python PIP 를 설치 하는 것은 사용 중인 시스템 패키지 관리자에 따라 다릅니다. 다양한 Linux 플랫폼 에 PIP 를 설치하는 방법은 다음과 같습니다 .
- Ubuntu 또는 Debian 기반 배포 에 Python PIP 를 설치하려면 터미널을 열고 Python 2.x 용 sudo apt install python-pip 를 입력 합니다. Python 3.x 설치의 경우 (Python 3.x)sudo apt install python3-pip 를 입력 합니다.
- Arch Linux 에서 터미널을 열고 Python 2.x 용 sudo pacman -S python2-pip 를 입력합니다. (sudo pacman -S python2-pip )Python 3.x 설치 의 경우 sudo pacman -S python-pip 를 입력 합니다.
- Fedora 기반 배포를 사용하는 경우 sudo dnf upgrade python-setuptools 를 입력한 다음 sudo dnf install python-pip python-wheel for Python 2.x 를 입력 합니다. Python 3.x 설치의 경우 (Python 3.x)sudo dnf install python3 python3-wheel 을 입력 합니다.
- PIP 를 수동으로 설치하려면 터미널을 열고 curl https://bootstrap.pypa.io/get-pip.py -o get-pip.py 를 입력하십시오 . 다운로드가 완료되면 python get-pip.py 를 입력 하여 자동 설치 스크립트를 실행합니다.
Windows에 Python PIP 설치(Installing Python PIP On Windows)
Linux 와 달리 Windows 에는 (Windows)Python 이 사전 설치된 상태로 제공되지 않습니다 . 즉 , 이 플랫폼에서 PIP 를 사용하려면 먼저 Windows용 Python을 다운로드하여 설치 해야 합니다.(download and install Python for Windows)
최신 버전의 Python 을 설치했다면 (Python)Python 설치 와 함께 설치된 PIP 를 찾아야 합니다. 언급했듯이 Python 2.7.9 및 Python 3.4 설치(이상)에는 PIP 가 자동으로 설치되어야 합니다.
이전 Python 버전을 사용하는 경우 get-pip 스크립트를 사용하여 pip를 자동으로 설치해야 합니다.
- get-pip.py 스크립트(Download the get-pip.py script) 를 Windows PC에 다운로드합니다. 관리자 권한 이 있는 PowerShell 또는 명령줄에서 python get-pip.py 를 입력 하여 PIP를 자동으로 설치합니다.
그러면 사용할 Python PIP 가 자동으로 설치 됩니다. 그런 다음 pip 또는 python -m pip 를 입력하여 (python -m pip)PowerShell 또는 명령줄 창 에서 실행할 수 있습니다 .
macOS에 Python PIP를 설치하는 방법
Linux 와 마찬가지로 macOS 에는 일반적으로 Python 과 (Python)PIP 버전이 함께 설치되어 있습니다 . macOS 의 (macOS)Python 과 PIP 는 모두 최신 릴리스에 비해 구식일 수 있지만 macOS 터미널 창 을 열고 pip 또는 python -m pip (또는 pip3 또는 python3 -m pip )를 입력하면 정상적으로 작동합니다.
Python 과 PIP 를 함께 업데이트 하려면 macOS용 Homebrew 패키지 관리자(Homebrew package manager) 를 사용하여 쉽게 업데이트할 수 있습니다 .
- Homebrew 가 설치되어 있는 경우 터미널 창을 열고 brew install python 을 입력하여 설치를 최신 버전의 Python 3.x 로 업데이트합니다 . 이전 Python 2.x 설치 를 설치하려면 brew install python@2 를 대신 입력하십시오.
설치되면 자습서에서 pip 또는 python -m pip (또는 pip3 또는 python3 -m pip )를 입력하여 PIP 를 실행하고 사용 가능한 (PIP)PIP 플래그 목록을 확인합니다 .
PIP 업데이트(Updating PIP)
이미 PIP 가 설치되어 있지만 최신 버전으로 업데이트하려는 경우 (PIP)PIP 자체 를 사용하여 업데이트할 수 있습니다 .
- macOS 및 Linux 사용자의 경우 pip install -U pip 를 입력 하여 업데이트 프로세스를 시작합니다. 대신 pip3 install -U pip(pip3 install -U pip) 또는 python -m pip install -U pip 를 사용할 수도 있습니다 .
- Windows 사용자는 관리자 액세스 권한으로 PowerShell 또는 명령줄을 열고 python -m pip install -U pip 를 입력하여 (python -m pip install -U pip)Python PIP 를 설치할 수 있습니다 .
PIP를 사용하여 Python 패키지 설치 및 제거(Installing & Uninstalling Python Packages Using PIP)
PIP 가 설치되고 업데이트되어 선택한 플랫폼에서 사용할 준비가 되면 마침내 이를 사용하여 Python 패키지를 다운로드 및 설치하거나 기존 패키지를 제거하는 데 사용할 수 있습니다.
- PIP 를 사용하여 새 Python 패키지를 설치하려면 pip install package 또는 python -m pip install package 를 입력하고 package 를 (python -m pip install package)패키지(package) 이름으로 바꿉니다 . Python 2.x 와 Python 3.x 가 모두 설치된 경우 macOS와 같은 특정 플랫폼에서 pip3 또는 python3 을 사용해야 할 수도 있습니다 .
- 설치된 모든 Python 패키지 목록을 보려면 pip list 또는 python -m pip list를 입력합니다. (python -m pip list. )특정 플랫폼에서 Python 3.x 패키지에 (Python 3.x)pip3 또는 python3 을 사용 합니다.
- 패키지를 제거하려면 pip uninstall package 또는 python -m pip uninstall package 를 입력하고 (python -m pip uninstall package)package 를 패키지 이름으로 바꿉니다 . Python 2.x 와 3.x 가 모두 설치된 경우 특정 플랫폼에서 pip3 또는 python3 을 사용 합니다. y 를 눌러 제거를 확인합니다.
PIP를 사용하여 더 나은 Python 프로젝트 개발(Using PIP To Develop Better Python Projects)
Python PIP 를 설치하고 이를 사용하여 새 패키지를 설치하는 방법을 알게 되면 Python 을 사용하여 더 크고 더 나은 프로젝트를 개발할 수 있는 무한한 수의 라이브러리 및 기타 프로젝트에 즉시 액세스할 수 있습니다 .
Python은 이해하기 쉬운 구문과 초보자를 위한 무한한 리소스 덕분에 특히 새로운 코더 에게 배울 수 있는 최고의 프로그래밍 언어 중 하나입니다.(best programming languages to learn)
새로운 Python 코더이든 전문가이든 관계없이 항상 새로운 것을 배울 수 있으므로 아래 의견 섹션에서 Python 팁(또는 질문)을 알려주십시오.(Python)
How To Install Python PIP For Python Packages
Python isn’t just a programming language for beginners—it’s a powerful and fυlly-fledged langυage, with an enormous number оf third-party packages and libraries created around it. Rather than code еverything yourself, you can deplоу these third-рarty packages and use them as рart of your own coding рrojects.
You might find these by searching GitHub or the web, but you can also use PIP, the package manager for Python, to do this instead. PIP allows you to search for and install Python PIP packages from the Python Package Index, with thousands of packages available.
What Is PIP?
PIP, or Package Installer for Python, allows you to install packages from the central repository of Python packages available at the Python Package Index. In simple terms, it acts as an app store for Python, allowing you to install Python packages from a command line or terminal without needing to locate them yourself.
Linux users will already be familiar with this process—package managers are an essential part of the Linux user experience, with APT, Pacman, and others allowing you to install different software on various Linux distributions from a terminal window.
You’ll need Python installed before you can begin to use PIP. macOS and most Linux distributions will already have Python installed, but you’ll need to install it manually on Windows 10. You’ll also need to do this if your Linux distribution doesn’t have Python installed (or has an older version of Python) using the package manager for your distribution.
Installing Python PIP On Linux
The python-pip package is available for download and installation for all major Linux distributions, as are variants. Depending on your Linux distribution, you may need to install the python2-pip package if you’re still using the Python 2.x series, rather than the Python 3.x series.
If you’re using Python 3.4 or above (or Python 2.7.9 or above), you don’t need to install PIP on Linux, as it’s already installed. Check this by opening a terminal window and typing python3 –version to check your installed Python version, then use python -m pip or python3 -m pip to use it.
For Python versions below 2.7.9 or 3.4, installing Python PIP on Linux will depend on the system package manager in use. Here’s how to install PIP on various Linux platforms.
- To install Python PIP on Ubuntu or Debian-based distributions, open a terminal and type sudo apt install python-pip for Python 2.x. Type sudo apt install python3-pip for Python 3.x installations.
- On Arch Linux, open a terminal and type sudo pacman -S python2-pip for Python 2.x. Type sudo pacman -S python-pip for Python 3.x installations.
- If you’re using a Fedora-based distribution, type sudo dnf upgrade python-setuptools, followed by sudo dnf install python-pip python-wheel for Python 2.x. Type sudo dnf install python3 python3-wheel for Python 3.x installations.
- To install PIP manually, open a terminal and type curl https://bootstrap.pypa.io/get-pip.py -o get-pip.py. Once downloaded, type python get-pip.py to run the automatic installation script.
Installing Python PIP On Windows
Unlike Linux, Windows doesn’t come with Python pre-installed. That means you’ll need to download and install Python for Windows first before you can begin to use PIP on this platform.
If you’ve installed the most up-to-date version of Python, then you should find PIP installed alongside your Python installation. As we’ve mentioned, Python 2.7.9 and Python 3.4 installations (and above) should have PIP installed automatically.
If you’re using an older Python version, you’ll need to use the get-pip script to install pip automatically.
- Download the get-pip.py script to your Windows PC. In an elevated PowerShell or command line with administrative access, type python get-pip.py to automatically install PIP.
This should automatically install Python PIP for you to use. You can then run it from a PowerShell or command line window by typing pip or python -m pip.
How To Install Python PIP On macOS
Like Linux, macOS usually comes with Python installed, as well as a version of PIP. Both Python and PIP on macOS are likely to be outdated, compared to the most recent release, but it should work as normal by opening a macOS terminal window and typing pip or python -m pip (or pip3 or python3 -m pip).
If you want to update Python and PIP together, you can do this easily using the Homebrew package manager for macOS.
- If you have Homebrew installed, open a terminal window and type brew install python to update your installation to the latest version of Python 3.x. To install an older Python 2.x installation, type brew install python@2 instead.
Once it’s installed, type pip or python -m pip (or pip3 or python3 -m pip) at the tutorial to run PIP and see a list of available PIP flags.
Updating PIP
If you already have PIP installed, but you want to update it to the latest version, you can do that using PIP itself.
- For macOS and Linux users, type pip install -U pip to begin the update process. You can also use pip3 install -U pip or python -m pip install -U pip instead.
- Windows users can install Python PIP by opening up a PowerShell or command line with admin access and typing python -m pip install -U pip.
Installing & Uninstalling Python Packages Using PIP
Once PIP is installed, updated, and ready to use on your chosen platform, you can finally begin to use it to download and install Python packages, or use it to uninstall existing packages.
- To install a new Python package using PIP, type pip install package or python -m pip install package, replacing package with the name of the package. You may need to use pip3 or python3 on certain platforms like macOS if you have both Python 2.x and Python 3.x installed.
- To see a list of all installed Python packages, type pip list or python -m pip list. Use pip3 or python3 for Python 3.x packages on certain platforms.
- To remove a package, type pip uninstall package or python -m pip uninstall package, replacing package with the package name. Use pip3 or python3 on certain platforms if you have both Python 2.x and 3.x installed. Press y to confirm the uninstallation.
Using PIP To Develop Better Python Projects
Once you know how to install Python PIP and use it to install new packages, you immediately have access to an endless number of libraries and other projects that will allow you to develop bigger and better projects of your own using Python.
Python is one of the best programming languages to learn, especially for new coders, thanks to an easy-to-understand syntax and an endless number of resources for beginners.
Whether you’re a new Python coder or a pro, there’s always something new to learn, so let us know your own Python tips (or questions) in the comments section below.