apple$ import pandas as pd -bash: import: command not found什么意思
时间: 2023-10-07 21:07:05 浏览: 152
python数据分析与可视化 import pandas as pd import numpy as np import m
这个错误提示是在 Bash shell中出现的,它告诉你命令 "import" 未被找到,这通常是因为你在 Bash shell 中输入了 Python 代码。
如果你想在 Bash shell 中执行 Python 代码,你应该首先进入 Python shell,而不是在 Bash shell 中执行 Python 代码。 在 Bash shell 中执行 Python 代码的正确方式是通过运行 Python 解释器,例如:
```
$ python
Python 3.7.3 ...
>>>
```
当你看到 ">>>" 提示时,你可以开始输入 Python 代码。如果你希望在 Python 中导入 Pandas 库,你可以在 Python shell 中输入以下代码:
```
import pandas as pd
```
这应该会运行正确,因为你现在是在 Python shell 中,而不是在 Bash shell 中。
阅读全文