jarun / googler

:mag: Google from the terminal
GNU General Public License v3.0
6.11k stars 529 forks source link

Cmdline not working with Windows cmd.exe #358

Closed phamwon closed 4 years ago

phamwon commented 4 years ago

All cmdline does not apply when I run on cmd.exe, but when tested on Windows PowerShell, it runs very well.

image

zmwangx commented 4 years ago

Can't reproduce with googler installed through choco.

image

Also, this looks like a generic Python script problem. Start with something simple like placing argv.py

import sys

print(sys.argv)

on your PATH and see if it works.

Since neither of the maintainers here use Windows much, we probably won't be of much help.

phamwon commented 4 years ago

Thanks for help, that worked when add print(sys.argv) !