进行安装
There is multiple ways to install dora:
- Linux
- MacOS
- Windows
- Cargo
- Source
- Github Releases
- Paste the following line in a terminal
curl --proto '=https' --tlsv1.2 -sSf https://raw.githubusercontent.com/dora-rs/dora/main/install.sh | bash
- Paste the following line in a terminal
curl --proto '=https' --tlsv1.2 -sSf https://raw.githubusercontent.com/dora-rs/dora/main/install.sh | bash
- Paste the following lines in a terminal
set DORA_VERSION=v0.3.6 # Check for the latest release
set ARCHITECTURE=x86_64
wget https://github.com/dora-rs/dora/releases/download/%DORA_VERSION%/dora-%DORA_VERSION%-%ARCHITECTURE%-pc-windows-msvc.zip
unzip dora-%DORA_VERSION%-%ARCHITECTURE%-pc-windows-msvc.zip
set PATH=%PATH%:%cd%
dora --help
cargo install dora-cli # In case of issues, you can try to add `--locked`
dora --help
- Clone and build source
## dora binary
git clone https://github.com/dora-rs/dora.git
cd dora
cargo build --release -p dora-cli
PATH=$PATH:$(pwd)/target/release
- To develop python library
# pip install maturin
## Python API
maturin develop -m apis/python/node/Cargo.toml
- To test dora installation
dora --help
- Go on our release page
- download both the
zip
andwhl
file corresponding to your architecture and OS. - Unzip the zip file and place it in your binary folder (e.g.:
$HOME/bin
). - Verify that dora is well installed by calling
dora --help
in your terminal.