The script flake8.exe is installed in 'c:\users\me\appdata\local\programs\python\python36-32\Scripts' which is not on PATH.
Consider adding this directory to PATH or, if you prefer to suppress this warning, use --no-warn-script-location.
Did some research on this and it seems like some sort of recurring issue.
One fix recommends removing trailing slashes from the environment variable.
Any other ideas?
This occurs every time I install via PIP
I am running python 3.6
I fixed this (on windows) by adding full control permission to the folder where i installed python. i installed it in "C:\Program Files\Python38-32"
Removing trailing back slashes from those path elements is a good idea.
There may also be a problem that pip is written in python which uses case sensitive compares by default, (as is the default on every commonly used platform that I am aware of other than windows). You should also make sure that your path variable matches the case expected by pip, (the actual case of the path elements on windows does not have to match).
To do this go into the control panel, system settings, advanced poperties, advanced, Environmental Variables and edit the path elements that are giving the problem. (Windows has a nasty habit of capitalizing things even when you don't).
If removing trailing slashes from the environment variables don't work, please try the following. It works fine for me. I am using window 10 and python3.7.0
Finally your path will be as the following.