Py-YouWol is the local equivalent of the online YouWol platform, designed to run on a personal computer. While the online ecosystem of YouWol is the go-to place for sharing resources, the local installation is preferred for the development of those resources. In fact, even for daily use of YouWol, the local application provides multiple benefits.
Find out more in the Py-YouWol guide.
Note: Py-YouWol can be installed from PyPi repository, see the Py-YouWol guide.
To install from source code, you will need to have Git and Python installed on your machine. Py-YouWol support the Python versions 3.8 & 3.9.
Once you have those, you can follow these steps:
- Clone the repository from GitHub:
git clone https://github.com/youwol/py-youwol - Navigate to the project directory:
cd py-youwol - Create a virtual environment (recommended) using python3:
python3 -m venv yw_venv - Activate the virtual environment:
source yw_venv/bin/activate(on Linux/Mac) oryw_venv\Scripts\activate(on Windows) - Install the required packages:
pip install -r requirements.txt - Run the application:
python main.py