I'm using Kali Linux and have Python2.7 and Python3 running side-by-side.
I'm trying to install the pyasn1 module in my python2.7 path but when I type
pip install pyasn1
it says it's already installed in my python3 path
Requirement already satisfied: pyasn1 in /usr/lib/python3/dist-packages (0.4.8)
How do I install the pyasn1 module under my python2.7 path using pip?
Thanks!