This issue tracker has been migrated to GitHub, and is currently read-only.
For more information, see the GitHub FAQs in the Python's Developer Guide.

classification
Title: No way to instsall win32com on python 3.6
Type: behavior Stage: resolved
Components: Library (Lib) Versions: Python 3.6
process
Status: closed Resolution: third party
Dependencies: Superseder:
Assigned To: Nosy List: B, brett.cannon, evan_, yan12125
Priority: normal Keywords:

Created on 2017-01-01 19:05 by B, last changed 2022-04-11 14:58 by admin. This issue is now closed.

Messages (4)
msg284428 - (view) Author: Brett Cannon (brett.cannon) * (Python committer) Date: 2017-01-01 20:12
Can you provide a bit more detail, e.g. what error are you seeing?
msg284429 - (view) Author: A (B) Date: 2017-01-01 21:22
i'm using the command pip install pypiwin32
but the installation process stops and I have this error: syntaxtError: Missing parentheses in call to 'print'
msg284476 - (view) Author: Evan Andrews (evan_) * Date: 2017-01-02 08:38
This package doesn't yet have a wheel for Python 3.6, so it falls back on the source distribution, and the setup.py file doesn't run under Python 3.

You can either wait for the maintainer to upload the new wheel to PyPI, or take one of the recently built installers from https://sourceforge.net/projects/pywin32/files/pywin32/Build%20220/
msg284477 - (view) Author: (yan12125) * Date: 2017-01-02 08:49
https://github.com/pywin32/pypiwin32/pull/2

Anyway this is not a Python issue but pywin32's.
History
Date User Action Args
2022-04-11 14:58:41adminsetgithub: 73314
2017-01-02 16:30:05zach.waresetstatus: open -> closed
resolution: third party
stage: resolved
2017-01-02 08:49:45yan12125setnosy: + yan12125
messages: + msg284477
2017-01-02 08:38:05evan_setnosy: + evan_
messages: + msg284476
2017-01-01 21:22:46Bsetmessages: + msg284429
2017-01-01 20:12:02brett.cannonsetnosy: + brett.cannon
messages: + msg284428
2017-01-01 19:08:31Bsettype: resource usage -> behavior
title: No way to instsall win32com -> No way to instsall win32com on python 3.6
2017-01-01 19:05:45Bcreate