> For the complete documentation index, see [llms.txt](https://swimplify.gitbook.io/python-virtual-environment/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://swimplify.gitbook.io/python-virtual-environment/install-packages-using-pip.md).

# Install packages using pip

## Summon Your First Coding Assistant

Once you have set up your .venv you are ready to bring in some help. Install your first package on your virtual environment:

{% tabs %}
{% tab title="Unix/macOS" %}

```bash
python3 -m pip install requests
```

{% endtab %}

{% tab title="Windows" %}

```powershell
py -m pip install requests
```

{% endtab %}
{% endtabs %}

{% hint style="info" %}
Now you will be ready to import the request library to be use on your code.
{% endhint %}

***

### Need Help or Have Questions?

If you encounter any issues while following this guide or if you're using a different operating system and need tailored instructions, don't hesitate to reach out. Our team is here to assist you on your coding journey.

**Contact Information:**

* Website: <https://swimplify.co>
* Email: <team@swimplify.co>

Feel free to drop us a message, and we'll get back to you as soon as possible. Happy coding!


---

# Agent Instructions
This documentation is published with GitBook. GitBook is the documentation platform designed so that both humans and AI agents can read, navigate, and reason over technical content effectively. Learn more at gitbook.com.

## Querying This Documentation
If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter:

```
GET https://swimplify.gitbook.io/python-virtual-environment/install-packages-using-pip.md?ask=<question>
```

The question should be specific, self-contained, and written in natural language.
The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
