└── README.md /README.md: -------------------------------------------------------------------------------- 1 | # Curiosity for Linux 2 | 3 | Curiosity is in early access for Linux. You can download the appropriate package file from the [releases page](https://github.com/curiosity-ai/curiosity-app-linux/releases/latest/), and manually install on your computer. 4 | 5 | ## Ubuntu and other Debian-based Linux 6 | - Download the .deb file from the [latest release](https://github.com/curiosity-ai/curiosity-app-linux/releases/latest/) 7 | - Check if you have libdl installed. If not, install it using `sudo apt update && sudo apt install -y libc-dev libsnappy1v5` 8 | - Install Curiosity using `sudo dpkg -i curiosity_VERSION.deb` 9 | - To uninstall Curiosity (for example to install a new version), use `sudo dpkg -r curiosity` 10 | 11 | ## Ubuntu Snap Store 12 | In development - for now use the .deb file above. 13 | 14 | ## RedHat / CentOS 15 | - Download the .rpm file from the [latest release](https://github.com/curiosity-ai/curiosity-app-linux/releases/latest/) 16 | - Check if you have libdl installed. If not, install it using `sudo yum install glibc-devel snappy` 17 | - Install Curiosity using `sudo yum install curiosity_VERSION.rpm` (for RHEL6+) or `sudo yum localinstall curiosity_VERSION.rpm` (for RHEL5) 18 | 19 | # Known Issues 20 | ###Missing libdl: 21 | - You might need to install libdl on your system. You can do that by running `sudo apt update && sudo apt install -y libc-dev libsnappy1v5` (Ubuntu and other Debian-based Linux) or `sudo yum install glibc-devel snappy` (RHEL, CentOS) 22 | 23 | ## Updates not available 24 | The update option is not yet supported on Linux. In order to update to a newer release, just download and install a new version - your data will be kept when you uninstall and install the new version. 25 | --------------------------------------------------------------------------------