Conflicting dependencies while installing torch==1.10.0, torchaudio==0.10.0, and torchvision==0.11.0 in my Python environment -
- c - Solaris 10 make Error code 1 Fatal Error when trying to build python 2.7.16 - Stack Overflow 推荐度:
- javascript - How to dismiss a phonegap notification programmatically - Stack Overflow 推荐度:
- javascript - Get the JSON objects that are not present in another array - Stack Overflow 推荐度:
- javascript - VS 2015 Angular 2 import modules cannot be resolved - Stack Overflow 推荐度:
- javascript - Type 'undefined' is not assignable to type 'menuItemProps[]' - Stack Overflow 推荐度:
- 相关推荐
I'm having trouble installing the following dependencies in my Python environment:
torch==1.10.0+cpu
torchaudio==0.10.0
torchvision==0.11.0
pyannote-audio==0.0.1
lightning==2.3.3
numpy
scipy
pandas
soundfile
matplotlib
When running pip install -r requirements.txt
, I encounter the following error:
ERROR: Cannot install -r requirements.txt (line 6), -r requirements.txt (line 7) and torch==1.10.0 because these package versions have conflicting dependencies.
The conflict is caused by:
The user requested torch==1.10.0
torchaudio 0.10.0 depends on torch==1.10.0
torchvision 0.11.0 depends on torch==1.10.0+cpu
To fix this you could try to:
1. loosen the range of package versions you've specified
2. remove package versions to allow pip to attempt to solve the dependency conflict
I am using a CPU-only environment (no CUDA). My current Python version is 3.8.
最新文章
- 下个月Win7正式“退休”,数据显示国内近60%电脑用户仍在使用
- 10月份微软Surface平板线上份额猛增 首次超iPad
- 微软为何仍在打造硬件 听纳德拉怎么说
- 50公里的传奇 Ubiquiti Networks
- opengl - How to render a FBO into an ImGui window? - Stack Overflow
- node.js - nodejspostgres connect issue - Stack Overflow
- tomcat9 - guacd WebSocket Tunnel Timeout with "Support for protocol 'vnc' is not installed" Er
- why docker change value of args if put in FROM - Stack Overflow
- javascript - Alphabetize options in a select list, retain event listeners - Stack Overflow
- node.js - I don't understand why I am getting a "no overload match for this call" error - Stack Overfl
- android - OneSignal Not Subscribing Users - Stack Overflow
- indexing - mysql 5.7 why this sql not using index_merge,it using a full table scan - Stack Overflow
- php - Laravel Defer on API requests - Stack Overflow
- tensorflow - How to resolved the import error with scipy when using keras_tuner? - Stack Overflow
- google sheets - shortest formula to get the last non zero value from column - Stack Overflow
- How to compare dates in vba for excel - Stack Overflow
- tsconfig - Is there a typescript compiler option that prevents implicit widening from readonly properties to readwrite? - Stack