我想用以下代码导入熊猫:
type Data struct {
Name string
Age int
Address *Address
// more fields of your data object
}
type Response struct {
Name string `json:"name"`
Age int `json:"age"`
}
func GetResponse(d Data) ([]byte, error) {
r := Response{
Name: d.Name,
Age: d.Age,
// anything else
}
return json.Marshal(r)
}
(在终端输入)
...并得到以下错误消息:
rnnezi$ import pandas as pd
我已经安装了Miniconda,并将目录更改为保存Miniconda的文件夹,但仍无法正常工作。我还在Stackoverflow上找到了类似的问题,并尝试在代码之前输入-bash: import: command not found
,但不幸的是,这样做没有帮助。有人知道我在做什么错吗?抱歉,很明显,但我自己找不到答案。