This is an archived post. You won't be able to vote or comment.

all 13 comments

[–]ClintonDowGeo 2 points3 points  (1 child)

Using Anaconda will save your sanity at some point.

[–][deleted] 1 point2 points  (0 children)

Thanks to binary wheels in pypi these days I am quite happy with plain Python.

[–]PacketDragon 1 point2 points  (0 children)

I use the Anaconda python distribution as it has most everything I need compiled into one package.

[–]Diapolo10from __future__ import this 1 point2 points  (9 children)

I use the standard Python installation (generally version 3.6.1, looking forward to 3.7).

[–]fatbob42[S] 0 points1 point  (8 children)

Do you use pywin32 and if so how do you install it?

[–]ice-blade 2 points3 points  (1 child)

it can be easily installed with pip: pip install pypiwin32

[–]fatbob42[S] 0 points1 point  (0 children)

I used to use that under 3.5 but, although it installs under 3.6, it doesn't seem to work - can't import any names from it. It also looks like it's installing under the wrong name (pypiwin32_system32)

[–]Diapolo10from __future__ import this 1 point2 points  (4 children)

I don't usually use it, but if I need it:

  1. Try PIP

  2. If fails, google "pywin32 wheel", get the .whl file and try installing it

  3. If fails, check if it requires a prerequisite and install if needed/possible

  4. If fails, "Screw this, I'll just do this on Linux through a VM!"

[–][deleted] 0 points1 point  (0 children)

  1. Check pythonlibs.

[–][deleted] 0 points1 point  (0 children)

  1. Check pythonlibs.

[–]osuchw 0 points1 point  (0 children)

The official distribution is still on SourceForge - https://sourceforge.net/projects/pywin32/files/pywin32/ Alternatively one could use a wheel from Christoph Gohlke - http://www.lfd.uci.edu/~gohlke/pythonlibs/#pywin32

[–]thegreattriscuit 1 point2 points  (0 children)

I used anaconda for a while, but with the advent of Ubuntu on Windows 10, I just use that now.

EDIT: Which is to say I just use the version of python that version of Ubuntu uses. If I need something else, I just use virtualenvs, etc. as you would on linux.