Hey guys, i started doing this tutorial a couple of days ago:
http://www.youtube.com/watch?v=HiTihloGxn4
Now pycharm loads the nmap module, even in another project, I deleted all my project folders, uninstalled nmap and i still get this at the top of every new file:
i!/usr/bin/python3
import nmap
scanner = nmap.PortScanner()
print("Welcome, this is a simple nmap automation tool")
print("<----------------------------------------------------->")
ip_addr = input("Please enter the IP address you want to scan: ")
print("The IP you entered is: ", ip_addr)
type(ip_addr)
Any idea how i get things back to normal?
Cheers