mirror of
https://github.com/tldr-pages/tldr.git
synced 2025-04-23 11:02:08 +02:00

* contributing-guides, common/*: revise subcommand mention notices Over the past commits it is more preferable to use this new notice format to follow the same passive sentence structure as well as removing any first-person nouns, i.e. "kami" ("we"). * adb, pip: refresh Indonesian translations
33 lines
808 B
Markdown
33 lines
808 B
Markdown
# pip
|
|
|
|
> Pengelola paket Python.
|
|
> Beberapa subperintah seperti `install` mempunyai dokumentasi terpisah.
|
|
> Informasi lebih lanjut: <https://pip.pypa.io>.
|
|
|
|
- Pasang suatu paket (lihat dokumentasi `pip install` untuk melihat contoh pemasangan tambahan):
|
|
|
|
`pip install {{nama_paket}}`
|
|
|
|
- Pasang suatu paket untuk hanya digunakan oleh pengguna saat ini:
|
|
|
|
`pip install --user {{nama_paket}}`
|
|
|
|
- Tingkatkan suatu paket ke versi terbaru:
|
|
|
|
`pip install --upgrade {{nama_paket}}`
|
|
|
|
- Copot pemasangan suatu paket:
|
|
|
|
`pip uninstall {{nama_paket}}`
|
|
|
|
- Simpan daftar paket-paket terpasang ke dalam suatu berkas:
|
|
|
|
`pip freeze > {{requirements.txt}}`
|
|
|
|
- Tampilkan informasi suatu paket yang terpasang:
|
|
|
|
`pip show {{nama_paket}}`
|
|
|
|
- Pasang kumpulan paket dari suatu berkas:
|
|
|
|
`pip install --requirement {{requirements.txt}}`
|