Protable AI in Your Device: The Ollama Project the Ollama project! With Ollama Getting Started Prepare Your Device: Ensure you have a device with ample RAM and storage space. Install necessary packages: pkg i build-essential cmake golang git apt update pkg i gcc-8 If needed, install GCC from the Pointless repository. Clone the Repo: git clone https://github.com/ollama/ollama.git Build and Install Dependencies: cd ollama go generate ./... go build . Start the Server: ./ollama serve Models Installing Pull the desired models from the repository: ./ollama pull gemma ./ollama pull openchat Running Models Chat Session: ./ollama run gemma One Shot: ./ollama run gemma "Summarize for me: $(cat README.md)" For More Details Check out the README.md for additional commands and API usage. Have fun bringing AI fe...
Step-by-Step Guide: Installing Cloudflared in Termux for Android (Alternative to ngrok) | 2024" J Link updated https://github.com/rajbhx/cloudflared-termux What is cloudflare Cloudflare, Inc. is an American content delivery network and DDoS mitigation company, founded in 2010. It acts as a reverse proxy between a website's visitor and the Cloudflare customer's hosting provider. Its headquarters are in San Francisco, California Usages cloudflared -url [localhost]:port_number] example : cloudflared -url localhost:8000 cloudflared tunnel localhost:[port_number] Installation Make sure your Termux app updated The commands you provided are the steps to install Cloudflared in Termux using the `rajbhx/cloudflared-termux` repository. Here's a breakdown of each command: 1. Update and upgrade packages: ``` pkg update && pkg upgrade && pkg install git ``` 2...