为什么在使用 pip 安装模块和包时无法识别命令并且无法打开文件?
why doesn't it recognize the command and can't open the file when installing modules and packages with pip?
ON WINDOWS,尝试为 Python 3.7 安装包或模块时。例如
在 cmd 上使用 "pip install beautifulsoup4" 命令时,它只是说:
""pip" isn't recognized as an internal or external command, program or executable batch file."
或
pyhton.exe: can't open file 'pip': [Errno 2] no such file or directory
我使用 jupyter 笔记本,当我能够 运行 任何安装而不是显示完整和正确的安装时,总是显示警告消息说它使用 TLS 或 SSL 但未安装 SSL 或其他像这样。
我正在检查模块是否安装了一些代码
try:
import numpy
except ImportError:
print("Module not installed")
显然它确实安装了 numpy,但没有安装其他的
当使用"try"代码时,我希望不要收到消息并能够使用模块。
您可能没有将 Python 添加到您的 Windows 路径。
这里很好地解释了它是如何工作的:(https://geek-university.com/python/add-python-to-the-windows-path/) :)
是的。即使 python 安装在 Windows 上,它也可能没有正确指向 python 路径。
请确保系统环境中有 python 的路径。
开始 -> 输入系统环境 -> 编辑系统环境 -> 系统变量 -> 路径 -> 请确保为 python 添加了路径 -> 确定(保存)。
并重新启动命令提示符并再次 运行 它。
在命令提示符下,
py --version
或
python3 --版本
这应该告诉你 python
的版本
还有
pip --version
这应该也行。
ON WINDOWS,尝试为 Python 3.7 安装包或模块时。例如
在 cmd 上使用 "pip install beautifulsoup4" 命令时,它只是说:
""pip" isn't recognized as an internal or external command, program or executable batch file."
或
pyhton.exe: can't open file 'pip': [Errno 2] no such file or directory
我使用 jupyter 笔记本,当我能够 运行 任何安装而不是显示完整和正确的安装时,总是显示警告消息说它使用 TLS 或 SSL 但未安装 SSL 或其他像这样。
我正在检查模块是否安装了一些代码
try:
import numpy
except ImportError:
print("Module not installed")
显然它确实安装了 numpy,但没有安装其他的
当使用"try"代码时,我希望不要收到消息并能够使用模块。
您可能没有将 Python 添加到您的 Windows 路径。
这里很好地解释了它是如何工作的:(https://geek-university.com/python/add-python-to-the-windows-path/) :)
是的。即使 python 安装在 Windows 上,它也可能没有正确指向 python 路径。
请确保系统环境中有 python 的路径。
开始 -> 输入系统环境 -> 编辑系统环境 -> 系统变量 -> 路径 -> 请确保为 python 添加了路径 -> 确定(保存)。
并重新启动命令提示符并再次 运行 它。
在命令提示符下,
py --version
或
python3 --版本
这应该告诉你 python
还有
pip --version
这应该也行。