Run this Python script on your terminal to enable monitor mode.
#!/usr/bin/env python import subprocess subprocess.call("ifconfig wlan0 down", shell=True) subprocess.call("iwconfig wlan0 mode monitor", shell=True) subprocess.call("ifconfig wlan0 up", shell=True) print("Monitor Mode Enabled")