Installation
Installing Webley is straightforward and requires minimal setup. It runs on Python 3.10+ without any extra configuration.
Installing via PyPI Recommended¶
The easiest way to install Webley is through PyPI. It’s a one-line command with no additional downloads required.
-
Open your terminal or command prompt.
-
Run the installation command:
1
pip install webley
-
Verify the installation:
1
python -c "import webley; print('Webley version:', webley.__version__)"
Tip
To keep your project dependencies isolated, consider using a virtual environment:
1 2 3 4 |
|
Installing from GitHub Development Version¶
For the latest features or if you plan to contribute to Webley, you can install directly from GitHub. This gives you access to updates before they are released on PyPI.
-
Clone the repository:
1 2
git clone https://github.com/DevByEagle/Webley.git cd Webley
-
Install Webley:
1
pip install .
-
Verify the installation:
1
python -c "import webley; print('Webley version:', webley.__version__)"
Info
Installing from GitHub is ideal for testing cutting-edge features. For most users, PyPI remains the recommended option.