You can conveniently experience various features of MobileX and learn how to use the Python API to implement each feature.
- OpenARK
- Python
- Install with your package manager
- Install with Anaconda environment (recommended)
# Please activate your virtual environment,
# i.e. conda activate <my_env>
pip install -r requirements.txt
In your OpenARK VINE Desktop (aka. MobileX Station
),
# Please activate your virtual environment,
# i.e. conda activate <my_env>
streamlit run Home.py --server.port=8501
# Then, open "http://localhost:8501/" with your browser.
# On Linux: xdg-open "http://localhost:8501/"
# On MacOS: open "http://localhost:8501/"
- Copy the template (
templates/Custom_Feature.py
) intopages/
directory and rename it into your feature name. - Check the TODO-commented lines (
TODO(user):
) and replace them. - Run the server.
- You can edit your code while running the server. The server can automatically detect the changes and reload them.