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: czipfile installation failure
Type: compile error Stage: resolved
Components: Library (Lib) Versions: Python 3.6
process
Status: closed Resolution: not a bug
Dependencies: Superseder:
Assigned To: Nosy List: ajayhn, ronaldoussoren
Priority: normal Keywords:

Created on 2018-01-02 09:56 by ajayhn, last changed 2022-04-11 14:58 by admin. This issue is now closed.

Messages (2)
msg309364 - (view) Author: Ajay (ajayhn) Date: 2018-01-02 09:56
pip installation for czipfile is failing with compilation error (as below)

Command Execute:
pip install --no-cache-dir czipfile

Error:
Collecting czipfile
  Downloading czipfile-1.0.0.tar.gz (144kB)
    100% |████████████████████████████████| 153kB 726kB/s
    Complete output from command python setup.py egg_info:
    Traceback (most recent call last):
      File "<string>", line 1, in <module>
      File "C:\Users\503022~1\AppData\Local\Temp\pip-build-3uthum1g\czipfile\setup.py", line 18
        print "cython not found, using previously-cython'd .c file."
                                                                   ^
    SyntaxError: Missing parentheses in call to 'print'. Did you mean print(int "cython not found, using previously-cython'd .c file.")?

    ----------------------------------------
Command "python setup.py egg_info" failed with error code 1 in...
msg309368 - (view) Author: Ronald Oussoren (ronaldoussoren) * (Python committer) Date: 2018-01-02 11:31
This is an issue with the czipfile package on PyPI (<https://pypi.python.org/pypi/czipfile>) and not a bug in CPython.

Note that czipfile appears to support Python 2 only, which would explain the error message you are getting.
History
Date User Action Args
2022-04-11 14:58:56adminsetgithub: 76661
2018-01-02 15:44:17pitrousetstatus: pending -> closed
2018-01-02 11:31:39ronaldoussorensetstatus: open -> pending

nosy: + ronaldoussoren
messages: + msg309368

resolution: not a bug
stage: resolved
2018-01-02 09:56:21ajayhncreate