# HOW TO INSTALL DROZER IN KALI LINUX 2021.4 So the whole last year i have been hving trouble installing drozer in kali linuz without necessarily using it in docker. In this article I will be showing you how i was able to successfully install drozer in kali linux 2020.4. First we have to install pip2.7 in our kali machine which is do by: ``` wget https://bootstrap.pypa.io/pip/2.7/get-pip.py ``` After doing this we get the get-pip.py in the folder we are in. So we use python2 to install the pip2.7 using the get-pip.py. ``` sudo python2 get-pip.py ``` Use which command to verify whether it is installed: ``` ┌──(c0d3x㉿pawn)-[~/Extracted/Software] └─$ which pip2.7 /usr/local/bin/pip2.7 ``` After this we have to wget the drozer whl from github: ``` wget https://github.com/FSecureLABS/drozer/releases/download/2.4.4/drozer-2.4.4-py2-none-any.whl ``` After doing so, we install the whl using pip2.7 ``` sudo pip2.7 install drozer-2.4.4-py2-none-any.whl ``` After doing so drozer is successfully installed but when we try to run in it, it requests us to install twisted First I did *pip2.7 install twisted* but i got an error. I did some research and i was able to fix it by installing setuptools. ``` pip2.7 install setuptools ``` After that I repeated installing twisted ``` pip2.7 install twisted ``` To my surprise it was successful and i could run drozer. Hope you enjoyed Happy hacking!!