Custom Mu - Custom version of A Simple Python Code Editor Mu
[How to make dev env.]
- install miniconda
https://docs.conda.io/projects/miniconda/en/latest/miniconda-install.html
- Create virtual environment
conda create -n mu python=3.8
- Activate the created virtual env.
conda activate mu
- Clone source codes
git clone https://github.com/roboticsware/mu
- Enter the directory of source codes
cd mu
- Install dev dependencies
pip install -e ".[dev]"
- Run Mu
python run.py
- Build Mu
make win64 or macos
You can also reivew more information about extensive developer documentation here.