1

So up untill now I had only one version of python : 2.7 x64.

Since I need to use a 32 bit libriry I installed python 2.7x32 in c:\python27x32, I call it in the command line usin "c:\python27x32

But how can I use pip to install new coponent for it? pip is somehow linked to my C:\python27 which contains the 64 bit version.

Thanks

sliders_alpha
  • 2,276
  • 4
  • 33
  • 52

1 Answers1

2

enter :

c:\python27x32\Scripts\pip 

instead of pip

Yasin Yousif
  • 969
  • 7
  • 23
  • oh pip has installed itself in the python path, allright, I always thought it was installed somewhere alone. – sliders_alpha Oct 20 '17 at 06:30
  • yes, and many packages (that have a cmd order) will be in the scripts folder, (PS: for py3 enter pip3 instead of pip) – Yasin Yousif Oct 20 '17 at 06:35
  • oh, could I go into my python27x32 folder, rename python.exe to python32.exe, same for pip, add them to the path and then run python32 – sliders_alpha Oct 20 '17 at 06:39
  • @sliders_alpha , I am in ubuntu now, (not Win), but you can always try it :) .., (undo if any errors happen) – Yasin Yousif Oct 20 '17 at 06:49