Python IDLE安装库Mac OS

问题描述 投票:-2回答:1

[enter image description here enter image description here我正在尝试在python idle中安装sklearn和pandas之类的库。当我尝试通过终端安装它时,出现以下错误:

SyntaxError: invalid syntax

我在做什么错?

>>> /Library/Frameworks/Python.framework/Versions/3.8/bin/python3.8 -m pip install pandas -m pip install pandas
  File "<stdin>", line 1
    /Library/Frameworks/Python.framework/Versions/3.8/bin/python3.8 -m pip install pandas -m pip install pandas
    ^
SyntaxError: invalid syntax
python python-idle
1个回答
0
投票

解决方案如下:

1-在使用的python文件夹中打开终端:

进入系统偏好设置,然后选择键盘>快捷方式>服务。在设置中找到“文件夹中的新终端”,然后单击该框。现在,当您在Finder中时,只需右键单击一个文件夹,您就会看到打开的终端。完成后,它将直接从您所在的文件夹中开始

2-在终端中,确保将当前目录(cd)设置为python文件夹。

3-使用以下方法安装软件包或库:

pip3.8 install pandas
pip3.8 install sklearn

4-运行python Shell以确保已导入图片中的库,如图enter image description here


0
投票

[好,如果您已经在Mac上安装了pip,则只需要键入pip install pandas而没有python前缀。

© www.soinside.com 2019 - 2024. All rights reserved.