Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
如果我收到的字符串指向有效的 Python 安装目录,有什么方法可以检查 Java?
这个想法是强制用户只给出他的 Python 安装文件夹的有效路径,如果路径无效,则返回错误让他们知道。
这个解决方案有几个问题。在 *nix 机器上,实际上并没有安装目录之类的东西。
因此,您可能希望使用选择可执行文件而不是目录。这也将允许您运行python --version以检查版本是否正常。
python --version