Python PIP
Last updated
Last updated
Sebelum masuk ke pembahasan terkait Modul, Paket, dan Library penting memahami Python PIP atau package manager dalam bahasa pemograman python.
Package Manager adalah alat bantu yang digunakan untuk:
Mengelola library atau modul tambahan yang dibutuhkan oleh suatu bahasa pemrograman.
Mengunduh, menginstal, menghapus, atau memperbarui package (perpustakaan) dengan mudah.
Downloading a package is very easy.
Open the command line interface and tell PIP to download the package you want.
Navigate your command line to the location of Python's script directory, and type the following:
Download a package named "camelcase":
Use the uninstall
command to remove a package:
Uninstall the package named "camelcase":
Use the list
command to list all the packages installed on your system:
List installed packages:
If you do not have PIP installed, you can download and install it from this page:
Find more packages at .