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.
最新文章
- 3Q大战2012版打起来了
- [连载]巨头“心血之作”终失败(三):诺基亚N9
- 常受电脑辐射的白领男易生闺女?
- c# - Having problems with a unity learn tutorial regarding Top-Level Statements - Stack Overflow
- excel - method range of object '_Global' failed trying to modify text - Stack Overflow
- ST_CONTAINS() giving FALSE even if Point lies within polygon. google-bigquery - Stack Overflow
- Is it possible to solve this vagrant ruby gems error? - Stack Overflow
- caching - Pytorch: the cache is constantly increasing - Stack Overflow
- c# - Is there a way to fill scriptable object field with a child class? - Stack Overflow
- javascript - Alphabetize options in a select list, retain event listeners - Stack Overflow
- magento - Renovate: Get version compatibility for "external" dependencies from documentation for Docker file -
- python - Why do I get AttributeError: module 'tensorflow.keras.backend' has no attribute 'placeholder&am
- reactjs - How to keep the modal open after navigating and returning from a certain screen in react native? - Stack Overflow
- mapping - How to display drawdown contours calculated with the Theis equation to display on an interactive map in Dash with Pyth
- window - Strawberry Perl doesn't include Win32::shortcut? - Stack Overflow
- lean - Lean4 good way to solve `imports are out of date` - Stack Overflow
- Setting a global property for one web user in server function in Apps Script - Stack Overflow