Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/computate-org/computate_flightgear
https://github.com/computate-org/computate_flightgear
Last synced: about 1 month ago
JSON representation
- Host: GitHub
- URL: https://github.com/computate-org/computate_flightgear
- Owner: computate-org
- Created: 2022-09-24T20:38:52.000Z (over 2 years ago)
- Default Branch: main
- Last Pushed: 2024-07-07T23:00:43.000Z (7 months ago)
- Last Synced: 2024-11-05T15:37:57.464Z (3 months ago)
- Size: 6.84 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Install the prerequisite applications
- https://github.com/computate-org/computate_plib
- https://github.com/computate-org/computate_simgear# Install flightgear
## Install the latest Python and setup a new Python virtualenv
```bash
pkcon install -y git
pkcon install -y python3
pkcon install -y python3-pip
pkcon install -y python3-virtualenv
virtualenv-3 ~/python
```### Load the python virtual environment and activate it for new terminals
```bash
source ~/python/bin/activate
echo "source ~/python/bin/activate" | tee -a ~/.bashrc
```### Configure the terminal to load the ~/.local libraries
```bash
echo "export LD_LIBRARY_PATH=${HOME}/.local/lib64:${HOME}/.local/lib" | tee -a ~/.bashrc
```## Install the latest Ansible
```bash
pip install setuptools_rust wheel
pip install --upgrade pip
pip install ansible
```## Install the flightgear ansible role
### Create a directory for the ansible role.
```bash
install -d ~/.ansible/roles/computate.computate_flightgear
```### Clone the flightgear ansible role.
```bash
git clone [email protected]:computate-org/computate_flightgear.git ~/.ansible/roles/computate.computate_flightgear
```## Run the flightgear ansible playbook to install the application locally.
```bash
cd ~/.ansible/roles/computate.computate_flightgear
ansible-playbook install.yml
```