-
Notifications
You must be signed in to change notification settings - Fork 1.7k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
pip install -r requirements.txt出错 #29
Comments
我也是这样的问题,请问解决了吗 |
this issue occurs when some packages that are required in the module cannot be installed |
i can resolve this issue asssign it to me |
can you help me? |
|
can you help me |
I had a similar problem when using Python 3.11. I switched to Python 3.7.6 (stated in the readme file), and it worked. Check your python version. Conda is a friend you can rely on. |
建议使用conda 环境,给课程安装一个新的运行环境。然后激活此环境。在pip install requirements.txt中的第三方模块时,如果一些下载不下来,建议使用在https://pypi.org/project/下载适合你环境的whl离线包,然后在进行安装 |
Use a Conda environment set to Python 3.7.6
and execute the command:
to manually install this library. Afterward, use:
to install other requirements. |
s.
it works |
老哥,我就是这样做的,但是我执行 pip install -r requirements.txt 安装所有包之后,再使用 conda list 或者 pip list 查看已安装过的包,结果输出显示非常少,与requirements文件中的包的数量严重不符,不知道这是为什么。 |
1首先确保你创建了一个新的环境,验证命令:coda env list,查看是否存在新创建的virtual env,我个人在本课程使用的pyhton版本为3.7.5,供参考 |
your method has been worked!!! |
The text was updated successfully, but these errors were encountered: