python:无法打开文件'help':[Errno 2]没有这样的文件或目录

时间:2018-07-09 11:57:30

标签: python python-2.7 python-requests

我正在尝试在我的cpanel项目上安装python软件包。但是面临奇怪的问题。以下是各种命令的cpanel输出:

[root@host myproject]# python
Python 2.7.5 (default, Apr 11 2018, 07:36:10)[GCC 4.8.5 20150623 (Red Hat 4.8.5-28)] on linux2Type "help", "copyright", "credits" or "license" for more information.

当我尝试命令帮助时,得到以下响应:

[root@host myproject]# python help
python: can't open file 'help': [Errno 2] No such file or directory

我正在尝试从名为“ myproject”的项目目录安装软件包。在安装软件包时,我得到相同的响应:

[root@host myproject]# python install requests
python: can't open file 'install': [Errno 2] No such file or directory[root@host myproject]#

我从错误日志中了解到的是python命令无法正常工作/无法识别。我已经搜索了各种解决方案,但找不到有关此问题的任何信息。这里有人可以帮助我强调我可能犯的错误吗?以及如何解决?

2 个答案:

答案 0 :(得分:1)

调用python help时,您正在尝试打开文件help。您要呼叫python --help。如果要安装请求,可以执行pip install requests

答案 1 :(得分:1)

简而言之:

要显示命令帮助,您需要运行

python --help

(不是python help,它指示python运行名为help的文件)

要安装软件包,您需要运行pip(Python软件包管理器):

pip install your-package-name