One Command, Ready to Go
Multiple installation methods available. The fastest way is just one command to launch a full-featured Web IDE.
Recommended — install from PyPI with automatic dependency resolution. Works on any system with Python 3.8+.
$ 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.
$ 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.
> 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.
$ docker run -d -p 12345:12345 \
-v $(pwd):/workspace \
phoneide/phoneide
Container started on port 12345