gpt4 book ai didi

python - pip install -r requirements.txt 不在 vscode 虚拟环境中安装库

转载 作者:行者123 更新时间:2023-12-05 03:29:10 28 4
gpt4 key购买 nike

我已经在 VS 代码中创建了虚拟环境。当我执行命令 pip install -r requirements.txt 时。 enter image description here

仍然 vs 代码说没有找到这样的模块。但是,如果我单独进行 pip install,它就像一个魅力。为什么 ?我的 requirements.txt 文件是

Flask==1.1.2
joblib==1.0.1
keras==2.6.0
matplotlib==3.3.4
numpy==1.21.2
pandas==1.3.3
requests==2.25.1
scikit_learn==1.0.2
seaborn==0.11.1
xgboost==1.5.1
utils==1.0.1
jellyfish==0.8.9
langdetect==1.0.9
nltk==3.6.1
spacy==3.2.0
textblob==0.17.1
vaderSentiment==3.3.2
ipython==7.30.1
gapminder==0.1
mlxtend==0.19.0
networkx==2.5
squarify==0.4.3
pandas-profiling==3.1.0
plotly==5.3.1
scikit_image==0.18.1
scipy==1.7.1
nbformat
squarify==0.4.3
gapminder==0.1
tensorflow==2.7
ipywidgets

最佳答案

可能是依赖冲突:tensorflow 2.7.0取决于 keras<2.8>=2.7.0rc0

当使用 pip install -r requirements.txt 安装依赖项时安装 tensorflow由于冲突而中止。

依赖项一一安装时keras 2.6.0首先安装,然后 tensorflow 2.7.0 .在安装过程中 tensorflow 2.7.0 keras 2.6.0被删除并替换为 keras-2.7.0 .

Installing collected packages: keras
Attempting uninstall: keras
Found existing installation: keras 2.6.0
Uninstalling keras-2.6.0:
Successfully uninstalled keras-2.6.0
Successfully installed keras-2.7.0

关于python - pip install -r requirements.txt 不在 vscode 虚拟环境中安装库,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/71049687/

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