simon-ging / coot-videotext

COOT: Cooperative Hierarchical Transformer for Video-Text Representation Learning
Apache License 2.0
288 stars 55 forks source link

PackagesNotFoundError: package version with 'torchaudio==0.7.0a0+a853dff' #39

Open teddy309 opened 3 years ago

teddy309 commented 3 years ago

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:

Thank you! :)

simon-ging commented 3 years ago

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