概要
ayato@ayato-app-dev:~/BeginnersSec/bot$ pip install python-dotenv
Defaulting to user installation because normal site-packages is not writeable
Collecting python-dotenv
Downloading python_dotenv-1.0.0-py3-none-any.whl (19 kB)
Installing collected packages: python-dotenv
WARNING: The script dotenv is installed in '/home/ayato/.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.
Successfully installed python-dotenv-1.0.0
こんな感じのエラーが出ることがある。
対処法
PATHに/home/ayato/.local/bin
が追加されていないことが原因になっている
以下コマンドで解決できる。
echo 'export PATH="/home/ayato/.local/bin:$PATH"' >> ~/.bashrc && source ~/.bashrc
/home/ayato/.local/bin
のところは警告で出ているWARNING: ... '/home/ayato/.local/bin' ... is not on PATH.
のところに書き換える。
Bashを使っている人は~/.bashrc
で大丈夫だが、Zshとかを使っている人は適宜置き換えて下さい。