Reputation: 87
i downloaded python 3.5.2, i am planning on making a keylogger i need to install pyhook and pywin but i dont know how. every body recommends me to install it by pip but i dont seem to have that module. i open up the idle and import pip, but it gives me the error message saying i dont have that module installed even though people say pip comes with versions 3.4+.. where and how do i install this pip module? i am on a windows ver. 10, 64 bits, python 3.5. any help is aprecciated.. i am new by the way go easy on me..
Upvotes: 0
Views: 26983
Reputation: 11
Sometimes when pip is not installed by default, use this:
python -m ensurepip --default-pip
Upvotes: 1
Reputation: 19
I am using Python 3.4 and was getting the error that it didn't exist. I ran this upgrade and I can now import pyperclip which was one of the packages in that module.
C:\Python35-32\Scripts>python -m pip install --upgrade pip
Output:
Collecting pip
Downloading pip-8.1.2-py2.py3-none-any.whl (1.2MB)
100% |################################| 1.2MB 259kB/s
Installing collected packages: pip
Found existing installation: pip 8.1.1
Uninstalling pip-8.1.1:
Successfully uninstalled pip-8.1.1
Successfully installed pip-8.1.2
Upvotes: 0
Reputation: 2152
You need to make sure the pip
executable is in your %PATH%
variable. For me, the pip
executable is located in the Scripts
directory of my Python installation. That turned out to be C:\Python34\Scripts
. So you should find out where this location is for you and then add it to your path variable.
Upvotes: 2