Skip to content

Commit

Permalink
MMVII: Update Readme for command completion on windows with Bash
Browse files Browse the repository at this point in the history
  • Loading branch information
Christophe Meynard authored and meynardc committed Jul 23, 2024
1 parent ab5a0d8 commit 14b0f21
Showing 1 changed file with 13 additions and 0 deletions.
13 changes: 13 additions & 0 deletions MMVII/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -165,6 +165,19 @@ These are typically installed by default on Ubuntu. If not, you can install them

After making this modification, the command completion feature will be active in any new terminal session.

**Windows:**

If you're using bash (installed with git for example) on Windows, completion may also works:
- You must have python >= 3.7 installed somewhere
- Edit your ~/.bash_profile and add: (adapt first 2 lines to your case)
```
MMVII_INSTALL_PATH=/c/micmac/MMVII
PYTHON_INSTALL_PATH=/c/Python/Python39/
PATH=${PYTHON_INSTALL_PATH}:${MMVII_INSTALL_PATH}/bin:$PATH
[ -f ${MMVII_INSTALL_PATH}/bash-completion/mmvii-completion ] && . ${MMVII_INSTALL_PATH}/bash-completion/mmvii-completion
```
### Graphical User Interface vMMVII
The **vMMVII** tool provides a convenient graphical user interface (GUI) for writing **MMVII** commands.
Expand Down

0 comments on commit 14b0f21

Please sign in to comment.