Installation

Install WiTwin to get started with RF digital twin simulation

Prerequisites#

System Requirements#

  • Python: 3.9 or higher (3.10 recommended)
  • pip: Latest version
  • Git: For source installation
  • Conda: Anaconda or Miniconda (recommended)

Quick Install#

Coming Soon

The WiTwin Python package will be available on PyPI soon. Stay tuned for the official release!

Verify Installation#

Verify that WiTwin is correctly installed:

import witwin
print(f"WiTwin version: {witwin.__version__}")
 
# Test basic functionality
from witwin import Scene, Server
 
scene = Scene()
print("WiTwin is ready!")

Start the Studio#

Launch the WiTwin Studio to verify everything works:

from witwin import Scene, Server
 
scene = Scene()
server = Server(scene=scene)
server.start()
 
# Studio opens automatically at http://localhost:8080

First Launch

The first time you start the server, the Studio frontend assets will be downloaded automatically. This may take a minute.

Next Steps#

Now that WiTwin is installed, continue with: