I'm trying to find out what's the reason of error: Unable to find vcvarsall.bat
after pip install greenlet
. I'd like to set log level used by distutils so that debug messages like log.debug("Unable to find productdir in registry")
would get printed. After looking at def parse_command_line(self):
I thought pip install --install-option="-vv" greenlet
should work but it doesn't (verbosity is still 1).
How can I do this?
pip
itself is changing the log level. Have you triedpip -vv install --install-option="-vv" greenlet
? – Distortion