# Troubleshooting

If you encounter issues with virtual environments in Paradime Code IDE:

1. The first step in troubleshooting is to delete the virtual environment and recreate it. Use these commands:

   ```bash
   mv .my_venv .my_venv.$(date +%Y%m%d_%H%M%S)
   [ -d ~/.local ] && mv ~/.local ~/.local.$(date +%Y%m%d_%H%M%S)
   ```

   Note:

   * This assumes the virtual environment is called `.my_venv`
   * The second command only moves the local folder if it exists
   * The `.local` folder is a user-level virtual environment directory
2. After deleting, recreate the virtual environment using the steps outlined in the Creating a Virtual Environment section.
3. Ensure you're in the correct directory when creating and activating the virtual environment.
4. Verify that the correct version of Python is being used (you can check with `python --version`).
5. If activation fails, try recreating the virtual environment.


---

# Agent Instructions: 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://docs.paradime.io/app-help/developers/virtual-environments/troubleshooting.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.
