Is there any way to show the dependency trees for pip packages?

You should take a look at pipdeptree: $ pip install pipdeptree $ pipdeptree -fl Warning!!! Cyclic dependencies found: ———————————————————————— xlwt==0.7.5 ruamel.ext.rtf==0.1.1 xlrd==0.9.3 openpyxl==2.0.4 – jdcal==1.0 pymongo==2.7.1 reportlab==3.1.8 – Pillow==2.5.1 – pip – setuptools It doesn’t generate a requirements.txt file as you indicated directly. However the source (255 lines of python code) should be relatively easy … Read more

Command errored out with exit status 1: python setup.py egg_info Check the logs for full command output – while installing auto-py-to-exe through pip

Edit Since this answer was posted, gevent has released several new versions, including prebuilt wheels for Python 3.8 on Windows, so the pip install gevent –pre shouldn’t be necessary anymore – just run pip install auto-py-to-exe as usual and it should work. Original answer Allow prerelease gevent versions via $ pip install gevent –pre $ … Read more

Python 2.7 : LookupError: unknown encoding: cp65001 [duplicate]

The error means that Unicode characters that your script are trying to print can’t be represented using the current console character encoding. Also try to run set PYTHONIOENCODING=UTF-8 after execute pip –version without reloading terminal if everything going well add PYTHONIOENCODING as env variable with value UTF-8. See How to set the path and environment … Read more