如何判断HPUX系统中是否支持Python?
我如何知道我所在的环境(某些版本的HPUX)是否安装了python?
How can I know if the environment that I am in (some version of HPUX) has python installed?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
如果 python 在您的 PATH-Environment 变量中(如果安装正确,则应该如此),您可以使用以下三个之一:
如果你不幸的话,它不在你的 PATH 中,你实际上必须搜索整个系统以确保它没有安装在某个地方。
If python is in your PATH-Environment variable (if it is properly installed, it should be), you could use one of the following three:
python
If you are unlucky, it is not in your PATH and you actually have to search the whole system to be sure it is not installed somewhere.
您可以使用 swinstall 命令列出已安装的软件包:
http://www.bga.org/~lessem /psyc5112/usail/man/hpux/swinstall.1.html
和 @jacob 所说的
which
,whereis
和find
命令非常有用you can use the swinstall command to list installed packages:
http://www.bga.org/~lessem/psyc5112/usail/man/hpux/swinstall.1.html
and as @jacob said the
which
,whereis
andfind
commands are very usefull