wxgeo
wxgeo
I'm trying Budgie on Debian. This environment is really nice, stable (contrary to kde 4 I tried briefly last year) and well designed. However, having to launch a terminal every...
I have discovered it in the while, but thanks for your advice ! So, for manually installed applications, creating a `.desktop` file in `~/.local/share/applications` seems to be enough to be...
As already said, using positive infinity as a default value for integers is a very common and natural choice. Using types in Python has for me two benefits: - safer...
Thanks for your answer. 1. Yes, this is the bash shell. 2. The script is installed by pip through entry points. This may be the cause of the failure indeed,...
I think I must in fact use option `--external-argcomplete-script`, since the `mcq` command is only a wrapper generated by `pip` for the `cli.py` file. So, I tried `eval "$(register-python-argcomplete --external-argcomplete-script...
I converted my script to not use absolute imports, so `python3 cli.py` works now. I also tried to change directory, and execute `eval "$(register-python-argcomplete --external-argcomplete-script cli.py mcq)"` in the directory...
Thanks a lot for your suggestion. I've tried it already, but tried again in case I missed something. While I'm a long time python and Linux user, I've very few...
I noticed also that I can put anything as `--external-argcomplete-script` argument, there's never any message displayed. (However, if I use an invalid option name like `--invalid-option`, then I get the...
Thanks a lot for your help ! > ensure that this file is an executable OK, this was indeed the reason it failed. `mcq` was executable, but `cli.py` was not...
For anyone else reading this thread in the future, one point not obvious from the doc, though it makes sense, is that the completion will only be enabled in the...