Current update check does pip3 install --user --upgrade ... which is a problem when the user is root, as it's likely that root doesn't have the necessary directories (like home) setup - this for instance can be seen in some docker containers.
So to enable these use cases make the --user argument in the call configurable
Current update check does
pip3 install --user --upgrade ...
which is a problem when the user is root, as it's likely that root doesn't have the necessary directories (like home) setup - this for instance can be seen in some docker containers. So to enable these use cases make the--user
argument in the call configurable