Having trouble what can I Do?

Viewed 31
$ cd pathprober
$ sudo pip3 install -r requirements.txt
    Requirement already satisfied: requests in /usr/lib/python3/dist-packages (from -r requirements.txt (line 1)) (2.27.1)
    Collecting argparse
    Using cached argparse-1.4.0-py2.py3-none-any.whl (23 kB)
    ERROR: Could not find a version that satisfies the requirement re (from versions: none)
    ERROR: No matching distribution found for re
$ 
1 Answers

You have the re python module listed in your requirements.txt. This module is part of the python standard library and is not installed using pip. If you remove re then your command should work.

You may also want to consider using a virtual environment or using --user rather than using sudo when installing your requirements.

Related