For people who are on windows 10 and do not have linux but want to make things work.
- you can enable the WSL in your windows 10 following this.
- Install Xming X window server for windows from here. and make sure it is running.
- Once WSL is working :
Open cmd, type in "bash", this will switch the cmd to WSL terminal, then run the following it will enable GUI for WSL .
Copied from this stackoverflow answer.
sudo apt-get install x11-apps
export DISPLAY=localhost:0.0
nano ~/.bashrc #(add export DISPLAY=localhost:0.0 at the end. Ctrl+X to exit/save)
sudo apt-get install gnome-calculator #will get you GTK
- Download miniconda for linux from here. It will be an ".sh" file.
- from the terminal go to the folder you downloaded the file to and run "bash <name_of_downloaded_file>", this will install conda.
- follow the spinningup tutorial for rest of installation.
For people who are on windows 10 and do not have linux but want to make things work.
Open cmd, type in "bash", this will switch the cmd to WSL terminal, then run the following it will enable GUI for WSL .
Copied from this stackoverflow answer.