> For the complete documentation index, see [llms.txt](https://docs.paradime.io/app-help/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://docs.paradime.io/app-help/developers-old/virtual-environments.md).

# Virtual Environments

## Introduction

[Paradime Code IDE](/app-help/documentation/code-ide.md) supports virtual environments, allowing you to create isolated Python environments for your projects. This feature helps manage dependencies and ensures compatibility between different projects.

Paradime comes with [Poetry](https://python-poetry.org/docs/) pre-installed and available in the Code IDE. Poetry is the preferred method for managing virtual environments and dependencies in Paradime IDE.

## Best Practices

1. Use `requirements.txt` or Poetry's `pyproject.toml` to track your project dependencies.
2. Always activate your virtual environment before working on your project.
3. Update your `.gitignore` file to exclude the virtual environment directory.
4. Prefer using Poetry for managing dependencies and virtual environments when possible.

## Explore how to create and manage virtual environments:

<table data-card-size="large" data-view="cards"><thead><tr><th align="center"></th><th data-hidden data-card-target data-type="content-ref"></th><th data-hidden data-card-cover data-type="files"></th></tr></thead><tbody><tr><td align="center"><strong>Using Poetry</strong></td><td><a href="/pages/iLziSdDjsSOZj5wWpymo">/pages/iLziSdDjsSOZj5wWpymo</a></td><td><a href="/files/5SL2w6HjunflUH2FYgiJ">/files/5SL2w6HjunflUH2FYgiJ</a></td></tr></tbody></table>


---

# 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, and the optional `goal` query parameter:

```
GET https://docs.paradime.io/app-help/developers-old/virtual-environments.md?ask=<question>&goal=<endgoal>
```

`ask` is the immediate question: it should be specific, self-contained, and written in natural language.
`goal` is optional and describes the broader end goal you are ultimately trying to accomplish on behalf of the user. GitBook uses it to tailor the answer towards what is most useful for that goal.

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.
