模块未找到错误:没有名为“aioredis”的模块

mmvthczy  于 2022-12-11  发布在  Redis
关注(0)|答案(1)|浏览(220)

在安装了aioredis后,它显示了模块未找到的错误。我用pip install aioredis安装了aioredis,但我仍然面临这个错误。

$ pip install aioredis
Requirement already satisfied: aioredis in /home/super/.pyenv/versions/3.9.5/lib/python3.9/site-packages (2.0.1)
Requirement already satisfied: async-timeout in /home/super/.pyenv/versions/3.9.5/lib/python3.9/site-packages (from aioredis) (4.0.2)
Requirement already satisfied: typing-extensions in /home/super/.pyenv/versions/3.9.5/lib/python3.9/site-packages (from aioredis) (4.1.1)

这是我的第三行

import aioredis

输出量:
第3行,在导入aioredis模块中未发现错误:没有名为“aioredis”的模块

avwztpqn

avwztpqn1#

尝试使用pipenv作为开发环境。
1.通过管道安装管道
pip3 install --user pipenv
1.安装所需的软件包
pipenv install aioredis
1.运行pipenv shell
pipenv shell
1.运行服务器
pipenv run python3 manage.py runserver

相关问题