Faisal Dawod
Faisal Dawod

Reputation: 13

Warning when install Python packages

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.

Upvotes: 0

Views: 1862

Answers (1)

Omer Dagry
Omer Dagry

Reputation: 567

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

Upvotes: 0

Related Questions