ThoughtfulDev / EagleEye

Stalk your Friends. Find their Instagram, FB and Twitter Profiles using Image Recognition and Reverse Image Search.
Do What The F*ck You Want To Public License
4.19k stars 558 forks source link

Import error . Probably a problem that is related to my setup... #25

Closed pi-eaterVZ closed 6 years ago

pi-eaterVZ commented 6 years ago

Traceback (most recent call last): File "eagle-eye.py", line 15, in from grabber.instagram import InstagramGrabber File "/home/osint/EagleEye/grabber/instagram.py", line 1, in from requests_html import HTMLSession File "/usr/local/lib/python3.5/dist-packages/requests_html.py", line 6, in import pyppeteer File "/usr/local/lib/python3.5/dist-packages/pyppeteer/init.py", line 25, in from pyppeteer.launcher import connect, launch, executablePath # noqa: E402 File "/usr/local/lib/python3.5/dist-packages/pyppeteer/launcher.py", line 19, in from pyppeteer.browser import Browser File "/usr/local/lib/python3.5/dist-packages/pyppeteer/browser.py", line 11, in from pyppeteer.target import Target File "/usr/local/lib/python3.5/dist-packages/pyppeteer/target.py", line 7, in from typing import Any, Callable, Coroutine, Dict, List, Optional ImportError: cannot import name 'Coroutine'

ThoughtfulDev commented 6 years ago

Coroutine is only available in the Typing package which ships with Python 3.6+ see Here and Here

As stated in the README at the top (the badge) only Python Version 3.6+ was tested by me and is supported.

So i suggest that you upgrade your python version to the newest 3.6 version.