我是Python的新手,正在尝试尝试使用“ elasticsearch”操纵数据。最初,我只是尝试使用其标准的example进行连接。
我使用以下命令成功安装了软件包
pip install elasticsearch
运行代码时:
from datetime import datetime
from elasticsearch import Elasticsearch
es = Elasticsearch()
doc = {
'author': 'kimchy',
'text': 'Elasticsearch: cool. bonsai cool.',
'timestamp': datetime.now(),
}
res = es.index(index="test-index", doc_type='tweet', id=1, body=doc)
print(res['result'])
res = es.get(index="test-index", doc_type='tweet', id=1)
print(res['_source'])
es.indices.refresh(index="test-index")
res = es.search(index="test-index", body={"query": {"match_all": {}}})
print("Got %d Hits:" % res['hits']['total']['value'])
for hit in res['hits']['hits']:
print("%(timestamp)s %(author)s: %(text)s" % hit["_source"])
我收到以下错误:
[Running] python -u "c:\Users\USERNAME\Dropbox\Stuff\Python\Elasticsearch.py"
Traceback (most recent call last):
File "c:\Users\USERNAME\Dropbox\Stuff\Python\Elasticsearch.py", line 10, in <module>
from elasticsearch import Elasticsearch
ModuleNotFoundError: No module named 'elasticsearch
我环顾四周,听到了有关 .bash_profile 的一些信息,但是我不明白那是什么意思?
我的PYTHONPATH环境变量包含
C:\Users\USERNAME\AppData\Roaming\Microsoft\Windows\Start Menu\Programs\Python 3.7
答案 0 :(得分:0)
您的Python路径可能仅包含Python可执行文件的别名,但它正在尝试从那里导入内容。您应该打开C:\Users\USERNAME\AppData\Roaming\Microsoft\Windows\Start Menu\Programs\Python 3.7
并从右键单击> Python可执行文件上的属性获得 Target 。
将PYTHONPATH设置为该路径。它可能看起来像C:\Users\USERNAME\AppData\Local\Programs\Python\Python37
。