ModuleNotFoundError:没有名为"cassandra.cluster"的模块; 'cassandra'不是包



我试过pip install cassandra-driver在pycharm终端中,admin模式下的conda命令提示符,我升级/降级了cassandra-driver的版本,重新启动pycharm,创建了新的env,仍然显示错误。

这是我的代码。

import cassandra
from cassandra.cluster import Cluster

my error massage:

C:Anaco3.8envsFlipScappython.exe 
C:/Users/Rushikesh/Downloads/FlipkratScrappingProject/cassan2.py
Traceback (most recent call last):
File "C:/Users/Rushikesh/Downloads/FlipkratScrappingProject/cassan2.py", line 1, in <module>
import cassandra
File "C:UsersRushikeshDownloadsFlipkratScrappingProjectcassandra.py", line 3, in <module>
from cassandra.cluster import Cluster
ModuleNotFoundError: No module named 'cassandra.cluster'; 'cassandra' is not a package

没有安装Cassandra Python驱动程序。

如果你还没有安装,试着安装:

$ pip3 install cassandra-driver

检查安装是否成功运行:

$ python -c 'import cassandra; print cassandra.__version__'

如果正确安装,您应该得到类似"3.25.0"的内容。

我认为我们可以把这个问题归咎于我们亲爱的DataStax,他们提到集群没有骆驼大小写,这导致了这个问题。

首先确保您已经安装了软件包(pip3 install cassandra-driver),然后使用下面的代码。

就这样用:

from cassandra.cluster import Cluster
cluster = Cluster(['172...', '172...','172...'])

替换所有的'172…

相关内容

  • 没有找到相关文章

最新更新