---
title: "💭 python script is not found"
description: "!None"
date: 2023-07-28
published: true
tags:
  - python
  - thought
template: link
---


<!-- embed not found: None -->
![[None]]

When setting up a new machine, vm, docker image you might be installing command line tools from places like pip.  They will often put executables in your `~/.local/bin` directory, but by default your shell is not looking in that directory for commands.

``` bash
  WARNING: The script dotenv is installed in '/home/falcon/.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.
```

To solve this you need to add that directory to your $PATH.


``` bash
export PATH=$PATH:~/.local/bin
```

To make this change permanant add this line to your shell's init script, which is likely something like `~/.bashrc` or `~/.zshrc`.

!!! note

    This post is a <a href="/thoughts/" class="wikilink" data-title="Thoughts" data-description="These are generally my thoughts on a web page or some sort of url, except a rare few don&#39;t have a link. These are dual published off of my..." data-date="2024-04-01">thought</a>. It's a short note that I make
    about someone else's content online <a href="/tags/thoughts/" class="hashtag-tag" data-tag="thoughts" data-count=2 data-reading-time=3 data-reading-time-text="3 minutes">#thoughts</a>
