Webをクローリングするツールを入れたくて
$ pip3 install scrapy
と実行したら
WARNING: The script scrapy is installed in '/home/kali/.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.
と叱られた
そか、/home/kali/.local/bin
にパスが通っていないよ!って言っているのか
~/.zshrc
にPATHを通してあげる記述をしてあげるのか
export PATH="/home/kali/.local/bin:$PATH"
で、再度、
$ pip3 install scrapy
と実行したら、叱られることなくモジュールを追加することができました。