Issue
When I try to execute conda env create -f virtual_platform_windows.yml
It shows
ResolvePackageNotFound:
- pytorch==0.1.12=py35_0.1.12cu80
I tried installing pytorch for windows and error still comes.How to solve this??
Solution
- Open: virtual_platform_windows.yml in Notepad
- Delete: - pytorch=0.1.12=py35_0.1.12cu80
- Delete: - torch==0.1.12
- Save
Using Anaconda prompt:
Execute the code: conda env create -f virtual_platform_windows.yml
Activate virtual environment: source activate virtual_platform
Install Pytorch seperately with conda install -c peterjc123 pytorch cuda80
Copy haas files into script directory
Answered By - David Answer Checked By - Katrina (WPSolving Volunteer)