It is common to do pip install
when installing Python tools, but the command installation destination at this time may be / usr / bin
or / usr / local / bin
depending on the environment. It seems.
--Installed in / usr / bin
on Amazon Linux 2014.09
--Installed in / usr / local / bin
on Amazon Linux 2015.03, 2015.09
If you want to install in / usr / bin
, you can specify--install-option = "--install-scripts = / usr / bin"
in the pip command option.
If you are using easy_install, it will be --script-dir = / usr / bin
.
reference:
Recommended Posts