One Command, Ready to Go

The fastest way to install PhoneIDE — pick the command for your platform.

Linux / macOS / Termux bash
curl -fsSL https://phoneide.samai.cc/install.sh | bash
Windows PowerShell
irm https://phoneide.samai.cc/install.ps1 | iex
Any platform with Python 3.8+ pip
pip install phoneide

Standalone Downloads

Pre-built binaries for every major platform. No Python required.

💻

Windows

x86_64 (amd64)

⬇ Download .exe

Or run in PowerShell:
irm https://phoneide.samai.cc/install.ps1 | iex

🖨️

Linux

x86_64 (amd64)

⬇ Download Binary

Or one-line install:
curl -fsSL https://phoneide.samai.cc/install.sh | bash

🧮

Linux

ARM64 (aarch64)

⬇ Download Binary

Raspberry Pi / ARM servers / Termux proot

🖥️

macOS

Apple Silicon (arm64)

⬇ Download Binary

M1/M2/M3/M4 Macs — Intel Macs use the pip method

Other Installation Methods

If the one-liner doesn’t fit, choose a manual method below.

Recommended — install from PyPI with automatic dependency resolution. Works on any system with Python 3.8+.

# Install from PyPI
$ pip install phoneide

# Launch the IDE
$ phoneide
PhoneIDE running at http://localhost:12345

After install, run phoneide and open http://localhost:12345 in your browser.

Install on Linux distributions or Termux on Android. Termux provides a full Linux environment on your phone.

# Termux (Android)
$ pkg install python
$ pip install phoneide

# Ubuntu / Debian
$ sudo apt install python3 python3-pip
$ pip install phoneide

# Fedora
$ sudo dnf install python3 python3-pip
$ pip install phoneide

Install on Windows using pip. Make sure Python 3.8+ is installed and added to your PATH.

# Install via pip
> pip install phoneide

# Launch
> phoneide
PhoneIDE running at http://localhost:12345

Run PhoneIDE in a Docker container for isolated, reproducible environments. Ideal for cloud servers and CI/CD pipelines.

# Pull and run
$ docker run -d -p 12345:12345 \
-v $(pwd):/workspace \
phoneide/phoneide

Container started on port 12345

Ready to Code?

Open your terminal and start coding on any device.

▶ Live Demo Explore Features API Reference