Python 2.7里不是自带redis的,那么在调用redis的时候自然也会报错,比如:
遇到这种情况怎么办?
第一种方法:
pip install redis
第二种方法:
easy_install redis
第三种方法:
去登录https://github.com/andymccurdy/redis-py,下载包上传到linux里之后,
python setup.py install
flask模块的安装也是同理。
注意!这里只有Redis,如果使用StrictRedis会报错:AttributeError: 'Redis' object has no attribute 'StrictRedis'。这个是版本的问题。见
参考资料:http://debugo.com/python-redis/