### Installing Python Dependencies Source: https://github.com/fivif/zay-cloud/blob/main/README.md This command installs the required Python packages listed in the `requirements.txt` file. It is a necessary step before running the application manually. Requires Python and pip to be installed. ```bash pip install -r requirements.txt ``` -------------------------------- ### Cloning Git Repository Source: https://github.com/fivif/zay-cloud/blob/main/README.md This command clones the ZAY-Cloud Git repository from GitHub. It's the first step in the manual installation process. Requires Git to be installed. ```bash git clone https://github.com/fivif/zay-cloud.git cd zay-cloud ``` -------------------------------- ### Running Python Application Source: https://github.com/fivif/zay-cloud/blob/main/README.md This command runs the main ZAY-Cloud application using Python. It assumes that the dependencies have been installed. Requires Python to be installed. ```bash python main.py ``` -------------------------------- ### Running Docker Container Source: https://github.com/fivif/zay-cloud/blob/main/README.md This command runs the ZAY-Cloud Docker container, mapping port 5888 on the host to port 5888 in the container. This allows accessing the ZAY-Cloud web interface from the host machine. Requires Docker to be installed. ```bash docker run -p 5888:5888 fivif/zay-cloud:latest ``` -------------------------------- ### Pulling Docker Image Source: https://github.com/fivif/zay-cloud/blob/main/README.md This command pulls the latest ZAY-Cloud Docker image from Docker Hub. It is a prerequisite for running ZAY-Cloud using Docker. ```bash docker pull fivif/zay-cloud:latest ``` === COMPLETE CONTENT === This response contains all available snippets from this library. No additional content exists. Do not make further requests.