mirror of
https://onedev.site.tesses.net/crosslang/crosslang-website
synced 2026-02-09 01:25:46 +00:00
30 lines
935 B
Markdown
30 lines
935 B
Markdown
+++
|
|
title = 'Linux Downloads'
|
|
date = 2025-08-31T22:09:31-05:00
|
|
+++
|
|
|
|
# Install using package manager (Ubuntu 22:04 or later, and doesn't work on debian trixie (or maybe earlier) or later due to mbedtls)
|
|
|
|
## Install Repository
|
|
````bash
|
|
sudo curl https://git.tesseslanguage.com/api/packages/tesses50/debian/repository.key -o /etc/apt/keyrings/gitea-tesses50.asc
|
|
echo "deb [signed-by=/etc/apt/keyrings/gitea-tesses50.asc] https://git.tesseslanguage.com/api/packages/tesses50/debian jammy main" | sudo tee -a /etc/apt/sources.list.d/gitea.list
|
|
sudo apt update
|
|
````
|
|
|
|
## Install the language
|
|
````bash
|
|
sudo apt install crosslang
|
|
````
|
|
|
|
## Or the IDE
|
|
````bash
|
|
sudo apt install crosslang-devstudio # FOR IDE as well
|
|
````
|
|
|
|
# Or you can Download as tarball
|
|
[x86_64](https://dl.tesseslanguage.com//crosslang-x86_64.tar.gz)
|
|
|
|
|
|
# Or use this docker container
|
|
```onedev.site.tesses.net/crosslang/crosslangextras/crosslangextras:latest``` (no IDE though) |