how to create and install requirement.txt file in kali linux

Hello Friends today’s topic is create and install requirement.txt file. if you are using kali linux 🙂

first create requirement.txt file for python and add our requirement in this file. For example

numpy
flask
panda

above library is our requirement for our kali linux tool or another reason So you can write your all requirement in this file

second thing create setup.sh file. In setup file we write installation code in for our requirement and setup.py file

apt-get install python

pip install -r requirement.txt 

python setup.py

in setup.py file we can write anything for example you can write any script for tool and any type of program.

print("Server start")

this is all about requirement.txt file. i hope you like and if any doubt regarding this please comment below.

Leave a Comment

Your email address will not be published. Required fields are marked *