Prometheus
Prometheus

Reputation: 1532

Installing pywin32 for python 3.5 in windows 7

I have experiencing a problem when installing pywin32 for python 3.5 to my windows 7 PC. The problem is, installation wizard stating that I have no any python versioned as 3.5 in my registery.

enter image description here

My pywin32 file is downloaded from here => pywin32-220.win-amd64-py3.5.exe.

The thing is, when I run python -V code line, I am able to see that I've python 3.5.2 on my PC.

enter image description here

So I don't understand that is the real problem is. Did I get something wrong in logical way?

Any help will be greatly appreciated.

Upvotes: 1

Views: 4437

Answers (3)

alpha_989
alpha_989

Reputation: 5350

use "py -m pip install pypiwin32" instead of "py -m pip install pywin32"/"pip install pywin32".

However, I found that pypiwin32 installs version 219. Pywin32's lates version is 221.

Upvotes: 1

Zafer Yilmaz
Zafer Yilmaz

Reputation: 620

Export in regedit HKLM\SOFTWARE\Python\PythonCore\3.5-32 and subkeys Replace in an editor "3.5-32" by "3.5" Import the resulting registry file again (by doubleclicking on it).

Upvotes: 2

Faruk
Faruk

Reputation: 2449

I strongly suggest you delete everything about python on your computer (do not forget to delete related PATH variables) and install Anaconda. You will be able to create several environments and much more.

You can find it in the link below;

https://www.continuum.io/downloads

Upvotes: 2

Related Questions