Skip to content

Instantly share code, notes, and snippets.

View Naveennavik's full-sized avatar

Naveen kumar Naveennavik

View GitHub Profile
@vandbt
vandbt / how to install PyTorch in windows 10
Created December 14, 2018 16:06
How to Install PyTorch in Windows 10
1. Install Python
https://www.python.org/downloads/
2. update pip
python -m pip install --upgrade pip
3. install numpy first
according to PyTorch official guide recommand that install numpy first.
pip install numpy