Skip to content

Latest commit

 

History

History
102 lines (71 loc) · 1.27 KB

DEVELOPMENT.md

File metadata and controls

102 lines (71 loc) · 1.27 KB
title sidebar_position id
Development
7
development

How to build Fury

Please checkout the source tree from https://github.com/apache/incubator-fury.

Build Fury Java

cd java
mvn clean compile -DskipTests

Environment Requirements

  • java 1.8+
  • maven 3.6.3+

Build Fury Python

cd python
pip install pyarrow==14.0.0 Cython wheel numpy pytest
pip install -v -e .

Environment Requirements

  • python 3.6+

Build Fury C++

Build fury row format:

pip install pyarrow==14.0.0
bazel build //cpp/fury/row:fury_row_format

Build fury row format encoder:

pip install pyarrow==14.0.0
bazel build //cpp/fury/encoder:fury_encoder

Environment Requirements

  • compilers with C++17 support
  • bazel 6.3.2

Build Fury GoLang

cd go/fury
# run test
go test -v
# run xlang test
go test -v fury_xlang_test.go

Environment Requirements

  • go 1.13+

Build Fury Rust

cd rust
# build
cargo build
# run test
cargo test

Environment Requirements

curl --proto '=https' --tlsv1.2 -sSf https://sh.rustup.rs | sh

Build Fury JavaScript

cd javascript
npm install

# run build
npm run build
# run test
npm run test

Environment Requirements

  • node 14+
  • npm 8+