I have a problem with a package that I created with Python 3.5.2 32-bit on Windows 7.
I usually deploy Python packages on Windows using the bdist_wininstsetuptools option . Thus, it is very easy for my colleagues to update the package simply by running the windows exe installer. However, since I switched to Python 3.5.2, I get the following error when trying to install the package:
Python version -32 required, which was not found in the registry
It seems to me that the installer is looking for a version of Python with the name "-32" that it cannot find. Has anyone encountered the same problem or found a solution?
source
share