# Run outdated python scripts that require equally outdated modules

Python 2.7 and its respective pip version are no longer supported, which means that a metric ton of scripts from the 2010's era no longer work with the most recent kali releases, as an example. One of the options is to rewrite the script in python 3. But if it's too long ...

```
sudo curl https://bootstrap.pypa.io/pip/2.7/get-pip.py  -o get-pip.py
sudo python2.7 get-pip.py
sudo python2.7 -m pip install [your missing module, like requests]
```


---

# 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.fullskid.fr/run-outdated-python-scripts-that-require-equally-outdated-modules.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.
