Having two versions of Python and installing a new module

I have two Python installations on my machine:

  • 1: Python 2.7 32 bit (c: \ python27) (installed first)
  • 2: Python 2.7 64 bit (c: \ python27-64) (recently installed, not configured as system Python by default)

When I install a new package with my standard Windows installer (for example, wxPython3.0-win64-3.0.0.0-py27.exefor wxPython), there are no questions like:

"For which Python installation do you want to install this module?"

Then this module is not recognized by my second Python installation.

How to work with installing a module package when installing two versions of Python?

+3
source share
1 answer

win64 py27 64- Python 2.7 . Python.

pip .. , . , C:\python27\Scripts\pip.exe C:\python27-64\Scripts\pip.exe .

+3

All Articles