TileDB-Py
Python interface to the TileDB storage engine
File Explorer
Download Latest Version (.zip)- build-wheels.yml
- ci.yml
- daily-test-build-numpy.yml
- daily-test-build.yml
- daily-tests.yml
- format.yml
- DownloadTileDB.cmake
- custom.css
- favicon.ico
- tiledb-logo_color_no_margin_@4x.png
- TileDB_Logo_BlueArtboard_1@1.5x.png
- tileDB_uppercase_600_112.png
- tileDB_uppercase_white_600_141.png
- conf.py
- gensidebar.py
- index.rst
- python-api.rst
- local-build.sh
- building-from-source.md
- config.py
- errors.py
- fragment_info.py
- fragments_consolidation.py
- in_memory_vfs.py
- incomplete_iteration.py
- multi_attribute.py
- multirange_indexing.py
- object.py
- parallel_csv_ingestion.py
- profile.py
- query_condition_datetime.py
- query_condition_dense.py
- query_condition_sparse.py
- query_condition_string.py
- quickstart_dense.py
- quickstart_dimension_labels.py
- quickstart_dimension_labels_sparse.py
- quickstart_sparse.py
- reading_dense_layouts.py
- reading_sparse_layouts.py
- string_dimension_labels.py
- string_float_int_dimensions.py
- time_traveling.py
- using_tiledb_stats.py
- variable_length.py
- vfs.py
- writing_dense_multiple.py
- writing_dense_padding.py
- writing_dense_rgb.py
- writing_sparse_multiple.py
- robin_growth_policy.h
- robin_hash.h
- robin_map.h
- robin_set.h
- LICENSE-string_view.txt
- LICENSE-tsl_robin_map.txt
- build.aarch64.sh
- build.sh
- Dockerfile.aarch64.manylinux2014
- Dockerfile2014
- array.cc
- attribute.cc
- CMakeLists.txt
- common.cc
- common.h
- consolidation_plan.cc
- context.cc
- current_domain.cc
- dimension_label.cc
- domain.cc
- enum.cc
- enumeration.cc
- filestore.cc
- filter.cc
- group.cc
- metadata.h
- object.cc
- profile.cc
- query.cc
- schema.cc
- subarray.cc
- tiledbcpp.cc
- vfs.cc
- test_cc.py
- test_filestore.py
- test_group.py
- test_vfs.py
- __init__.py
- array.py
- benchmarks.py
- indexing.py
- metadata.py
- asv.conf.json
- __init__.py
- check_csv_dir.py
- common.py
- conftest.py
- datatypes.py
- strategies.py
- test_aggregates.py
- test_array_schema.py
- test_attribute.py
- test_basic_import.py
- test_cloud.py
- test_compat.py
- test_consolidation_plan.py
- test_context_and_config.py
- test_core.py
- test_current_domain.py
- test_dask.py
- test_dimension.py
- test_dimension_label.py
- test_domain.py
- test_domain_index.py
- test_enumeration.py
- test_examples.py
- test_filestore.py
- test_filters.py
- test_fixes.py
- test_fork_ctx.py
- test_fragments.py
- test_group.py
- test_hypothesis.py
- test_libtiledb.py
- test_metadata.cc
- test_metadata.py
- test_multi_index-hp.py
- test_multi_index.py
- test_pandas_dataframe.py
- test_profile.py
- test_query.py
- test_query_condition.py
- test_read_subarray.py
- test_repr.py
- test_schema_evolution.py
- test_serialization.cc
- test_serialization.py
- test_stats.py
- test_subarray.py
- test_timestamp_overrides.py
- test_util.py
- test_vfs.py
- test_webp.cc
- test_webp.py
- test_write_subarray.py
- __init__.py
- aggregation.py
- array.py
- array_schema.py
- attribute.py
- CMakeLists.txt
- consolidation_plan.py
- core.cc
- ctx.py
- current_domain.py
- data_order.py
- dataframe_.py
- datatypes.py
- debug.cc
- dense_array.py
- dimension.py
- dimension_label.py
- dimension_label_schema.py
- domain.py
- domain_indexer.py
- enumeration.py
- filestore.py
- filter.py
- fragment.cc
- fragment.py
- group.py
- highlevel.py
- main.cc
- metadata.py
- multirange_indexing.py
- ndrectangle.py
- npbuffer.cc
- npbuffer.h
- object.py
- parquet_.py
- profile.py
- py_arrow_io_impl.h
- py_arrowio
- query.py
- query_condition.cc
- query_condition.py
- schema_evolution.cc
- schema_evolution.py
- serialization.cc
- sparse_array.py
- stats.py
- subarray.py
- util.cc
- util.h
- version_helper.py
- vfs.py
- .clang-format
- .dockerignore
- .gitignore
- .pre-commit-config.yaml
- .readthedocs.yml
- CMakeLists.txt
- CONTRIBUTING.md
- HISTORY.md
- LICENSE
- pyproject.toml
- README.md
- setup.py
# Installation Guide
git clone https://github.com/TileDB-Inc/TileDB-Py
Downloads the entire project code from GitHub to your computer.
cd TileDB-Py
Moves into the project folder you just downloaded.
2. Official Install Script
Easy Recommended- Python 3 Python is required to use pip.
pip install tiledb
Installs the package published on PyPI directly โ no need to clone the source.
Pulled directly from this repo's README.
3. Docker
Easy- Git Needed to download the project code from GitHub.
- Docker Desktop Needed to build and run containers. Install it and keep it running in the background.
docker build -f misc/pypi_linux/Dockerfile.aarch64.manylinux2014 -t tiledb-py .
Builds a runnable image based on the Dockerfile.
docker run -p 8080:80 tiledb-py
Runs the built image as an actual container.
4. CMake
Mediummkdir build && cd build
Creates a folder to hold the build output and moves into it.
cmake ..
Analyzes the source code and generates build configuration files (must be run inside the build folder).
make
Compiles the code based on the generated build configuration to produce an executable.
5. Python
Easypip install tiledb
Installs the package published on PyPI directly โ no need to clone the source.
Pulled directly from this repo's README.
