Warning when install Python packages

Question:

The problem:

I have problem when I put this command on Linux Terminal to install the Python packages

pip install google-auth google-auth-oauthlib google-auth-httplib2 google-api-python-client

WARNING: The scripts pyrsa-decrypt, pyrsa-encrypt, pyrsa-keygen, pyrsa-priv2pub, pyrsa-sign and pyrsa-verify are installed in ‘/home/kakashi/.local/bin’ which is not on PATH.
Consider adding this directory to PATH or, if you prefer to suppress this warning, use –no-warn-script-location.
WARNING: The script google-oauthlib-tool is installed in ‘/home/kakashi/.local/bin’ which is not on PATH.
Consider adding this directory to PATH or, if you prefer to suppress this warning, use –no-warn-script-location.

I try more and more but the Compilers like: VSCode, or PyCharm, my project not work because these 2-Warnings.

Asked By: Faisal Dawod

||

Answers:

just add ‘/home/kakashi/.local/bin’ to the path

on windows – Adding a directory to the PATH environment variable in Windows

on linux – How to Add a Directory to PATH in Linux

Answered By: Omer Dagry
Categories: questions Tags: ,
Answers are sorted by their score. The answer accepted by the question owner as the best is marked with
at the top-right corner.