You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Only the source is available on pypi.python.org, so users must first install 'zlib' before running pip install pyminizip. If pyminizip were also distributed as a binary wheel package, then that extra manual step would be eliminated. This would be helpful for people installing pyminizip in a virtualenv or for downstream PIP projects that depend on pyminizip.
This could be done by running the following on a system with zlib already installed:
Only the source is available on pypi.python.org, so users must first install 'zlib' before running
pip install pyminizip
. If pyminizip were also distributed as a binary wheel package, then that extra manual step would be eliminated. This would be helpful for people installing pyminizip in a virtualenv or for downstream PIP projects that depend on pyminizip.This could be done by running the following on a system with zlib already installed:
pip install twine pip install wheel python setup.py sdist bdist_wheel twine upload dist/*
The text was updated successfully, but these errors were encountered: