coot-videotext
coot-videotext copied to clipboard
PackagesNotFoundError: package version with 'torchaudio==0.7.0a0+a853dff'
while installing conda environment using 'requirements.txt' and 'requirements_frozen.txt', I had some Issues. Issue is about the version of torchaudio package version at 'requirements_frozen.txt'. I want to ask is it ok to install conda env with 'torchaudio==0.7.0' instead of 'torchaudio==0.7.0a0+a853dff'.
I installed packages by code as below. -conda env create -n lss -f requirements.txt -conda install --file requirements_frozen.txt At second one, I encountered error as below, and I installed one by one. PackagesNotFoundError: The following packages are not available from current channels:
- mypy-extensions==0.4.3
- mkl-fft==1.2.0
- torchaudio==0.7.0a0+a853dff
- mkl-random==1.1.1
- torch==1.7.1 However, I couldn't install torchaudio package because it's version. At 'requirements_frozen.txt', version of torchaudio package is as 'torchaudio==0.7.0a0+a853dff' and I have no idea about it. I think it's a mis-written version number. So can I know exact version of torchaudio package to run the code? If it isn't miss written one, can I know the way to install the version of torchaudio package?
Thank you! :)
Hi, I suggest you try regular installation with conda: python=3.8.5
and pytorch=1.7.1
with installation as described on the pytorch homepage, then pip install -r requirements.txt
. You don't need torchaudio
Best