hp ux - how to set python environment variable in HP-UX OS? -
i new in hp-ux. trying working python in hp-ux. have install python download package hp-ux package
but can not set environment variable. python found in "/usr/local/bin". when tried
python --version
it returned
python: command not found
how can work python in hp-ux ? thanks
this looks directory containing python interpreter not on path
. check if path
contains /usr/local/bin
:
echo $path
if not see /usr/local/bin
in there, can add path this:
export path=$path:/usr/local/bin
Comments
Post a Comment