# Pynt CLI Troubleshooting

{% hint style="success" %}
**At a Glance**: 🛠️ Encountering issues with Pynt CLI? This guide provides step-by-step solutions for resolving common problems from installation errors to scan execution issues, ensuring the smooth operation of your Pynt CLI.
{% endhint %}

***

## 'pynt' is not recognized

When you install Pynt CLI using `pip`, the output will show the path to the script folder. To prevent the "Pynt not recognized" error when running Pynt, ensure that the Python scripts folder is added to your PATH environment variable. This issue usually arises when the pip scripts folder is not included in your PATH.

<figure><img src="/files/rB4pT6dFq0SqjfpcQasg" alt=""><figcaption><p>Installing Pynt CLI</p></figcaption></figure>

To find Pynt location path after installation:

```bash
pip show pyntcli
```

<figure><img src="/files/mg81bSBlfbwHaDNa6alq" alt=""><figcaption><p>Path Location</p></figcaption></figure>

Add to PATH: [Instructions on how to add a variable to PATH for Win Mac and Linux](https://gist.github.com/nex3/c395b2f8fd4b02068be37c961301caa7)

***

## Wrong Pynt !

Getting the following message means that there is a conflict with another package named Pynt installed on your machine.

<figure><img src="/files/gMdltIMEu1CR5kgbv3do" alt=""><figcaption><p>Wrong Pynt !</p></figcaption></figure>

To remove the unwanted Pynt installation:

```bash
pip uninstall pynt
```

***

## Unable to pull the image from docker pull ghcr.io/pynt-io/pynt

If you're unable to pull the Pynt image from Docker:

```bash
docker pull ghcr.io/pynt-io/pynt
```

#### Possible Issue:

This might be due to organizational policies or using a private registry. In such cases, override the registry URI:

```bash
export IMAGE=<Your Private Registry URI>
```

Visit [Pynt Docker Images](https://github.com/pynt-io/pynt/pkgs/container/pynt) for available tags and more information.

***

{% hint style="info" %}
For additional support, visit [Pynt Community Support](https://www.pynt.io/community).
{% endhint %}


---

# 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.pynt.io/documentation/api-security-testing/pynt-scans-troubleshooting/pynt-cli-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.
