How to install Glowing Bear on Windows 10
Install Windows Subsystem for Linux (WSL) from the Microsoft Store:
- Visit the Microsoft Store
- Search for and install Ubuntu 18.04 LTS
- Launch the installed application
Verify that WSL is running Ubuntu 18.04 LTS as your WSL distribution:
- Open up the command prompt in Windows (
cmd) - Type
wsl -l -v, and you should see output similar to:
NAME STATE VERSION * Ubuntu-18.04 Running 2If you are not running Ubuntu 18.04 with version 2, update to version 2 by running:
wsl --set-version Ubuntu-18.04 2- Open up the command prompt in Windows (
Install the necessary packages in Ubuntu:
sudo apt update && sudo apt upgrade sudo apt install build-essential zlib1g-dev libssl-dev libffi-dev python3-pip python3-dev python3-venvClone the Glowing Bear GitHub repository:
git clone https://github.com/glowing-bear/glowing-bear.gitNavigate to the
glowing-beardirectory:cd glowing-bearSetup a Python virtual environment:
python3 -m venv wenvActivate the virtual environment:
source wenv/bin/activateInstall required dependencies:
pip install -r requirements.txtRun Glowing Bear:
python -m glowing_bearOpen your web browser and navigate to
http://localhost:8181/to access the Glowing Bear web interface.
Congratulations, you have successfully installed and launched Glowing Bear on Windows 10 using WSL.