我知道有这样的帖子,但是我找不到答案:S
我安装了最新版本的Python(3.7),并且已经附带了pip,对吗?我试图在CMD上进行所有尝试以安装库,但是每次我收到“无效语法”时。
py -m pip install ndjson;
python -m pip install ndjson;
pip install ndjson;
python.exe -m pip install ndjson;
甚至python --version
的语法也无效。
有人帮我吗?
我的Windows是64位。.
编辑:
答案 0 :(得分:1)
您在Python解释器中,而不是在终端中。
打开一个新终端,然后再次尝试pip install ndjson
。
请注意,如果在终端的开头看到>>>
,则说明您位于Python解释器中。您无法通过Python解释器运行pip命令;您只能从终端运行它们。
要退出解释器,您可以输入quit()
(或在某些系统中按Control D),这将带您回到终端。