Hi korlandril hope all is well!
I haven’t found a specific URL for torchvision 0.2.1
However here are some things you can try,
-
pip install torchvision==0.2.1
or you can add the following line
-
RUN pip install torchvision==0.2.1
After the requirements line in the file called “Dockerfile” located in the repository.
- As there are lots of dependencies, in some cases where my model was trained months previous, I have just had to retrain it on the current versions of fastai and update all the associated libraries etc in my requirements.txt. In this case this is usally the version installed on Google Colab.
One app uses the following requirements.txt however sometimes minor changes are made in one library, which affects another library and its not always documented, so I have quite a few versions of requirements.txt.
numpy==1.16.1
torchvision==0.2.1
https://download.pytorch.org/whl/cpu/torch-1.0.1.post2-cp37-cp37m-linux_x86_64.whl
fastai==1.0.54
starlette==0.12.0
uvicorn==0.4.6
python-multipart==0.0.5
aiofiles==0.4.0
aiohttp==3.5.4
Hope this helps mrfabulous1 `