Merge branch 'develop' of https://egit.irs.uni-stuttgart.de/eive/eive_tmtc into develop
This commit is contained in:
commit
0e317a435a
50
README.md
50
README.md
@ -1,8 +1,46 @@
|
|||||||
### How to use this folder
|
# TMTC Commander EIVE
|
||||||
|
|
||||||
This folder contains template files to set up the TMTC commander
|
# Set up virtual environment
|
||||||
for a new mission or project. These files are the adaption
|
|
||||||
point to customize the TMTC commander.
|
## Linux
|
||||||
|
|
||||||
|
1. Create virtual environment
|
||||||
|
|
||||||
|
```sh
|
||||||
|
python3 -m venv .
|
||||||
|
```
|
||||||
|
|
||||||
|
2. Activate virtual environment
|
||||||
|
|
||||||
|
```sh
|
||||||
|
./Scripts/activate
|
||||||
|
```
|
||||||
|
|
||||||
|
3. Install `tmtccmd` for virtual environment. `-e` for interactive installation.
|
||||||
|
|
||||||
|
```sh
|
||||||
|
cd tmtccmd
|
||||||
|
python3 -m pip install -e .[gui]
|
||||||
|
```
|
||||||
|
|
||||||
|
## Windows
|
||||||
|
|
||||||
|
1. Create virtual environment
|
||||||
|
|
||||||
|
```sh
|
||||||
|
py -m venv .
|
||||||
|
```
|
||||||
|
|
||||||
|
2. Activate virtual environment
|
||||||
|
|
||||||
|
```sh
|
||||||
|
Scripts\activate.bat
|
||||||
|
```
|
||||||
|
|
||||||
|
3. Install `tmtccmd` for virtual environment. `-e` for interactive installation.
|
||||||
|
|
||||||
|
```sh
|
||||||
|
cd tmtccmd
|
||||||
|
py -m pip install -e .[gui]
|
||||||
|
```
|
||||||
|
|
||||||
To do so, simply copy all folder inside the TMTC commander root. This
|
|
||||||
step is also required because the TMTC commander core will load some modules.
|
|
||||||
|
@ -1,4 +1,4 @@
|
|||||||
SW_NAME = "eive"
|
SW_NAME = "eive"
|
||||||
VERSION_MAJOR = 1
|
VERSION_MAJOR = 1
|
||||||
VERSION_MINOR = 5
|
VERSION_MINOR = 6
|
||||||
VERSION_SUBMINOR = 0
|
VERSION_SUBMINOR = 0
|
||||||
|
Loading…
Reference in New Issue
Block a user