gpt4 book ai didi

python - 在python中建立redis连接

转载 作者:IT王子 更新时间:2023-10-29 06:08:41 24 4
gpt4 key购买 nike

我正在使用 redisbayes library在 python 中实现朴素贝叶斯分类。但是当我写的时候——

rb = redisbayes.RedisBayes(redis=redis.Redis())
rb.train('good', 'sunshine drugs love sex lobster sloth')

它给出了以下错误 -

ConnectionError: Error 10061 connecting localhost:6379. 
No connection could be made because the target machine actively refused it.

我试过这样做-

pool = redis.ConnectionPool(host='localhost', port=6379, db=0)
rb = redisbayes.RedisBayes(redis=redis.Redis(connection_pool=pool))

但它给出了同样的错误。我无法找到解决方案。我如何使用 python 建立与 redis 的连接,或者如何使用来自 MySQL 的训练数据在 python 中进行朴素贝叶斯分类?

最佳答案

你确实意识到你需要有一个本地运行的 Redis 服务器才能连接到它,看看你的进程列表中是否有 redis-server 如果它不存在而你也没有有一个注册服务,您可能需要安装它。查看 redis homepage 上的安装说明

关于python - 在python中建立redis连接,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/19678365/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com