Skip to content

adding rust to docs #8937

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
Jan 30, 2025
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ description: 'Installing a development environment for different operating syste
Ubuntu 22.04/20.04

```bash
sudo apt-get update && sudo apt-get --no-install-recommends install -y build-essential curl git redis-server python3-dev python3-pip python3-venv python3-tk libldap2-dev libsasl2-dev
sudo apt-get update && sudo apt-get --no-install-recommends install -y build-essential curl git redis-server python3-dev python3-pip python3-venv python3-tk libldap2-dev libsasl2-dev cargo
```

```bash
Expand All @@ -25,7 +25,7 @@ description: 'Installing a development environment for different operating syste
MacOS 10.15

```bash
brew install git python pyenv redis curl openssl node sqlite3 geos
brew install git python pyenv redis curl openssl node sqlite3 geos rust
```

Arch Linux
Expand All @@ -38,7 +38,7 @@ description: 'Installing a development environment for different operating syste

```bash
# Install the required dependencies:
sudo pacman -S base-devel curl git redis cmake gcc python python-pip tk libldap libsasl pkgconf ffmpeg geos openldap
sudo pacman -S base-devel curl git redis cmake gcc python python-pip tk libldap libsasl pkgconf ffmpeg geos openldap rust
```

```bash
Expand Down
Loading