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

Popular posts from this blog

python - pip install -U PySide error -

arrays - C++ error: a brace-enclosed initializer is not allowed here before ‘{’ token -

cytoscape.js - How to add nodes to Dagre layout with Cytoscape -