Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/computate-org/computate_eigen


https://github.com/computate-org/computate_eigen

Last synced: about 1 month ago
JSON representation

Awesome Lists containing this project

README

        

# Install eigen

## 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 eigen ansible role

### Create a directory for the ansible role.

```bash
install -d ~/.ansible/roles/computate.computate_eigen
```

### Clone the eigen ansible role.

```bash
git clone [email protected]:computate-org/computate_eigen.git ~/.ansible/roles/computate.computate_eigen
```

## Run the eigen ansible playbook to install the application locally.

```bash
cd ~/.ansible/roles/computate.computate_eigen
ansible-playbook install.yml
```