{"id":18858308,"url":"https://github.com/princemardoch/install-pip-simply","last_synced_at":"2026-05-05T02:38:02.084Z","repository":{"id":220881565,"uuid":"752830513","full_name":"princemardoch/Install-pip-simply","owner":"princemardoch","description":"Installing pip from the command line - a step-by-step guide","archived":false,"fork":false,"pushed_at":"2024-08-15T14:08:35.000Z","size":15,"stargazers_count":1,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2024-12-30T19:47:20.308Z","etag":null,"topics":["pip","pip-install","python3","shell"],"latest_commit_sha":null,"homepage":"","language":null,"has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":null,"status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/princemardoch.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":null,"code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null}},"created_at":"2024-02-04T22:51:50.000Z","updated_at":"2024-08-15T14:14:51.000Z","dependencies_parsed_at":"2024-02-04T23:52:49.252Z","dependency_job_id":null,"html_url":"https://github.com/princemardoch/Install-pip-simply","commit_stats":null,"previous_names":["princemardoch/install_pip"],"tags_count":0,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/princemardoch%2FInstall-pip-simply","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/princemardoch%2FInstall-pip-simply/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/princemardoch%2FInstall-pip-simply/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/princemardoch%2FInstall-pip-simply/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/princemardoch","download_url":"https://codeload.github.com/princemardoch/Install-pip-simply/tar.gz/refs/heads/main","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":239800418,"owners_count":19699121,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["pip","pip-install","python3","shell"],"created_at":"2024-11-08T04:11:47.792Z","updated_at":"2026-02-07T16:30:13.903Z","avatar_url":"https://github.com/princemardoch.png","language":null,"funding_links":[],"categories":[],"sub_categories":[],"readme":"# Installing pip\n\nThis guide explains how to install pip, the package manager for Python, using the curl method.\n\n## Requirements\n- Python 3 installed on your system\n- Internet access\n- Terminal or command line\n\n## Installation Steps\n\n1. Download the pip installation script:\n   ```sh\n   curl https://bootstrap.pypa.io/get-pip.py -o get-pip.py\n   ```\n   This command downloads the `get-pip.py` script from the official PyPA (Python Packaging Authority) website and saves it in your current directory.\n\n2. Run the script with Python:\n   ```sh\n   python3 get-pip.py\n   ```\n   This command runs the downloaded script, which will install pip on your system.\n\n## Detailed Explanation\n\n### Step 1: Downloading the Script\nWe use the `curl` command to download files from the internet. In this case:\n- `https://bootstrap.pypa.io/get-pip.py` is the URL of the pip installation script.\n- `-o get-pip.py` tells curl to save the downloaded file as `get-pip.py` in the current directory.\n\n### Step 2: Running the Script\n`python3 get-pip.py` starts the Python 3 interpreter and runs the `get-pip.py` script. This script:\n1. Checks your Python environment\n2. Downloads the latest version of pip\n3. Installs pip on your system\n\n## Checking the Installation\nAfter installation, you can check if pip is correctly installed by running:\n```sh\npip --version\n```\nThis should display the version of pip installed on your system.\n\n## Notes\nIf you encounter permission errors during installation, you may need to run the command with `sudo`:\n  ```sh\n  sudo python3 get-pip.py\n  ```\nMake sure to keep pip up to date by regularly using the command:\n  ```sh\n  pip install --upgrade pip\n  ```\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fprincemardoch%2Finstall-pip-simply","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fprincemardoch%2Finstall-pip-simply","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fprincemardoch%2Finstall-pip-simply/lists"}