Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How do you install pywin32 from a binary file in tox on Windows?

My application depends on pywin32 which I have installed in my system environment via Windows binary file. How do you install a module like pywin32 from a binary file in tox on Windows?

like image 785
BP_ Avatar asked Oct 29 '14 20:10

BP_


1 Answers

There is now a version of pywin32 on PyPI that can be installed with pip. It is called pypiwin32, and it installs the package using the binary wheel format.

https://pypi.python.org/pypi/pypiwin32

pip install pypiwin32

Or, in tox.ini

[testenv]
deps = pypiwin32
like image 75
Christian Long Avatar answered Nov 08 '22 06:11

Christian Long