Python pip module issues on Kali Linux

Question:

I am on my Kali Linux. When I run sudo python3 Storm-Breaker.py, I get an error

ModuleNotFoundError: No module named ‘pyngrok’

But when I import pyngrok in an ordinary python file and then run it, it works out fine.
Please please help.

Asked By: Jason

||

Answers:

You shall install the package before using it.

Run the following command to install the package and its dependencies.

pip install pyngrok
Answered By: MJK618

You can try using the following command

sudo pip3 install -r requirements.txt
Answered By: Aryan Rajput
Categories: questions Tags: ,
Answers are sorted by their score. The answer accepted by the question owner as the best is marked with
at the top-right corner.