faizan yousuf
faizan yousuf

Reputation: 29

when ever i try to execute the file it shows me this?

Traceback (most recent call last):

File "Storm-Breaker.py",

line 7, in from modules import localhost File:

"/home/faizan/Desktop/storm-breaker/Storm-Breaker/modules/localhost.py",

line 1, in from pyngrok import ngrok ModuleNotFoundError: No module named 'pyngrok'

Upvotes: 0

Views: 7986

Answers (1)

Shubhankar
Shubhankar

Reputation: 72

You need to install pip install pyngrok, which is used in localhost.py file. Here is documentation

Upvotes: 2

Related Questions