What's going on here? Typing commands sometimes executes stuff in the middle of typing. #2955
-
I've started having some weird issues lately where when I type commands sometimes it just seems to execute stuff and overwrites characters/lines in the output, the original input seems to still exist though because when I press enter it executes it correctly. Here's an example:
Using the latest version of cmder_mini v1.3.25 on Windows 10 |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 10 replies
-
@chrisant996 maybe related to Clink completions? |
Beta Was this translation helpful? Give feedback.
Here is the command that the pip completions are running:
python -c "from distutils.sysconfig import get_python_lib; print(get_python_lib())"
If you run that, you'll get the same error message.
I said the error is coming from pip, but what I mean is that the error is coming from pip or something that pip depends on, such as python.
The error message says that the "distutils" package in python is deprecated. The error message includes a suggestion to "Use setuptools or check PEP 632 for potential alternatives".
That's an issue in the python/pip installation. You'll have to resolve that in the python and/or pip installations. A good place to look for help could be in the pip repo, or in ano…