You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I succeeded in running Spinning Up on Windows 11 via WSL 2.
The procedure linked in the official page (https://github.com/openai/spinningup/issues/23) did not work for me. Also, it is not necessary to use Xming X Window server anymore.
This is what I did:
From Microsoft Store, install: Windows Subsystem for Linux
From Microsoft Store, install: Ubuntu
Launch Ubuntu to finish installation and configuration
From Ubuntu command line: sudo apt update, then sudo apt full-upgrade
sudo apt install x11-apps
sudo apt install octave (via this step the packets necessary for the rendering parts are installed)
in CMD prompt: wsl --unregister Ubuntu after installing WSL and Ubuntu from Microsoft Store
The text was updated successfully, but these errors were encountered:
horseathesource
changed the title
Running SpinningUp on Windows 11 with Windows Subsystem for Linux (v2)
Running SpinningUp on Windows 11 with Windows Subsystem for Linux v2 (Success)
Dec 11, 2023
I succeeded in running Spinning Up on Windows 11 via WSL 2.
The procedure linked in the official page (https://github.com/openai/spinningup/issues/23) did not work for me. Also, it is not necessary to use Xming X Window server anymore.
This is what I did:
sudo apt update
, thensudo apt full-upgrade
sudo apt install x11-apps
sudo apt install octave
(via this step the packets necessary for the rendering parts are installed)conda create -n spinningup python=3.6
conda activate spinningup
conda install -c conda-forge mpi4py mpich
pip install opencv-python==3.4.13.47
(more recent versions might not work)sudo apt-get update && sudo apt-get install libopenmpi-dev
sudo mkdir /usr/lib/dri
(these 3 steps are necessary if a file_not_found error occurs)sudo ln -s /usr/lib/x86-64-linux-gnu/dri/swrast-dri.so /usr/lib/dri/
sudo ln -s /usr/lib/x86-64-linux-gnu/dri/radeonsi-dri.so /usr/lib/dri/
git clone https://github.com/openai/spinningup.git
cd spinningup
pip install -e .
if Uninstall and Reinstall:
wsl --unregister Ubuntu
after installing WSL and Ubuntu from Microsoft StoreThe text was updated successfully, but these errors were encountered: