如何判断HPUX系统中是否支持Python?

发布于 2024-11-18 17:54:56 字数 41 浏览 1 评论 0原文

我如何知道我所在的环境(某些版本的HPUX)是否安装了python?

How can I know if the environment that I am in (some version of HPUX) has python installed?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

二货你真萌 2024-11-25 17:54:56

如果 python 在您的 PATH-Environment 变量中(如果安装正确,则应该如此),您可以使用以下三个之一:

python --version
which python
Whereis python
  1. 调用 python --version
  2. 显示使用 python 时调用的路径>
  3. 显示 python 的所有路径

如果你不幸的话,它不在你的 PATH 中,你实际上必须搜索整个系统以确保它没有安装在某个地方。

find / -name python

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 --version
which python
Whereis python
  1. Calls python --version
  2. Shows the path that is called when using python
  3. Shows all paths to 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.

find / -name python
乖不如嘢 2024-11-25 17:54:56

您可以使用 swinstall 命令列出已安装的软件包:
http://www.bga.org/~lessem /psyc5112/usail/man/hpux/swinstall.1.html

和 @jacob 所说的 whichwhereisfind 命令非常有用

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 and find commands are very usefull

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文