https://github.com/computate-org/computate_libsquish
https://github.com/computate-org/computate_libsquish
Last synced: 3 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/computate-org/computate_libsquish
- Owner: computate-org
- Created: 2022-07-24T03:55:22.000Z (almost 3 years ago)
- Default Branch: main
- Last Pushed: 2024-05-08T02:38:25.000Z (about 1 year ago)
- Last Synced: 2025-02-15T04:32:32.449Z (5 months ago)
- Size: 3.91 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Install libsquish
## 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
source ~/python/bin/activate
echo "source ~/python/bin/activate" | tee -a ~/.bashrc
```## Install the latest Ansible
```bash
pip install setuptools_rust wheel
pip install --upgrade pip
pip install ansible
```## Install the libsquish ansible role
### Create a directory for the ansible role.
```bash
install -d ~/.ansible/roles/computate.computate_libsquish
```### Clone the libsquish ansible role.
```bash
git clone [email protected]:computate-org/computate_libsquish.git ~/.ansible/roles/computate.computate_libsquish
```## Run the libsquish ansible playbook to install the application locally.
```bash
cd ~/.ansible/roles/computate.computate_libsquish
ansible-playbook install.yml
```