You are viewing a single comment's thread from:

RE: Part 2: Coding on Hive With Python - Installing Modules and Fetching Some Data from Hive

in #programming4 years ago

After installing Beem I saw this message on the terminal:

WARNING: The script beempy is installed in '/home/user/.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

Do you know what this means? I replicated the example that you provided with no issues but I don't know what that warning means.

Sort:  

Beem also has a command line executable you can call directly instead of via Python script. The warning is telling you if you try to invoke beempy from your terminal, the command won’t be found. You will need to append the path to your PATH environment variable, or use the full path.

Thank you for the response, I had already figured it out and appended the path to the PATH environment. I learned something about linux in the meantime :)

Awesome! I’m glad to hear of your success