This package is required to install grpcio: ./scripts/pkgdep.sh --developer-tools ... Could not find <Python.h>. This could mean the following: * You're on Ubuntu and haven't run `apt-get install python3-dev`. * You're on RHEL/Fedora and haven't run `yum install python3-devel` or `dnf install python3-devel` (make sure you also have redhat-rpm-config installed) * You're on Mac OS X and the usual Python framework was somehow corrupted (check your environment variables or try re-installing?) * You're on Windows and your Python installation was somehow corrupted (check your environment variables or try re-installing?) ---------------------------------------- ERROR: Failed building wheel for grpcio Failed to build grpcio Signed-off-by: Alexey Marchuk <alexeymar@nvidia.com> Change-Id: I1a9d6154de9ab86ba8062b53ba56002e226daa94 Reviewed-on: https://review.spdk.io/gerrit/c/spdk/spdk/+/15751 Tested-by: SPDK CI Jenkins <sys_sgci@intel.com> Community-CI: Mellanox Build Bot Reviewed-by: Shuhei Matsumoto <smatsumoto@nvidia.com> Reviewed-by: Jim Harris <james.r.harris@intel.com> Reviewed-by: Paul Luse <paul.e.luse@intel.com> Reviewed-by: <qun.wan@intel.com> Reviewed-by: Tomasz Zawadzki <tomasz.zawadzki@intel.com>
86 lines
3.2 KiB
Bash
Executable File
86 lines
3.2 KiB
Bash
Executable File
#!/usr/bin/env bash
|
|
# SPDX-License-Identifier: BSD-3-Clause
|
|
# Copyright (C) 2020 Intel Corporation
|
|
# Copyright (c) 2022 NVIDIA CORPORATION & AFFILIATES.
|
|
# All rights reserved.
|
|
#
|
|
|
|
VERSION_ID_NUM=$(sed 's/\.//g' <<< $VERSION_ID)
|
|
# Includes Ubuntu, Debian
|
|
# Minimal install
|
|
apt-get install -y gcc g++ make libcunit1-dev libaio-dev libssl-dev libjson-c-dev libcmocka-dev uuid-dev libiscsi-dev
|
|
if [[ $NAME == "Ubuntu" ]] && [[ $VERSION_ID_NUM -ge 2204 ]]; then
|
|
# there is no python package in Ubuntu 22.04
|
|
apt-get install -y python3
|
|
else
|
|
apt-get install -y python
|
|
fi
|
|
apt-get install -y libncurses5-dev libncursesw5-dev python3-pip python3-dev
|
|
pip3 install ninja
|
|
if ! pip3 install meson; then
|
|
# After recent updates pip3 on ubuntu1604 provides meson version which requires python >= 3.6.
|
|
# Unfortunately, the latest available version of python3 there is 3.5.2. In case pip3 fails to
|
|
# install meson fallback to packaged version of it ubuntu1604's repos may provide.
|
|
apt-get install -y meson
|
|
fi
|
|
pip3 install pyelftools
|
|
pip3 install ijson
|
|
pip3 install python-magic
|
|
pip3 install grpcio
|
|
pip3 install grpcio-tools
|
|
pip3 install pyyaml
|
|
# Additional dependencies for SPDK CLI - not available on older Ubuntus
|
|
apt-get install -y python3-configshell-fb python3-pexpect || echo \
|
|
"Note: Some SPDK CLI dependencies could not be installed."
|
|
|
|
# Additional dependencies for DPDK
|
|
if [[ $NAME == "Ubuntu" ]] && [[ $VERSION_ID_NUM -lt 1900 ]]; then
|
|
echo "Ubuntu $VERSION_ID needs NASM version 2.14 for DPDK but is not in the mainline repository."
|
|
echo "You can install it manually"
|
|
else
|
|
apt-get install -y nasm
|
|
fi
|
|
apt-get install -y libnuma-dev
|
|
# Additional dependencies for ISA-L used in compression
|
|
apt-get install -y autoconf automake libtool help2man
|
|
# Additional dependencies for USDT
|
|
apt-get install -y systemtap-sdt-dev
|
|
if [[ $INSTALL_DEV_TOOLS == "true" ]]; then
|
|
# Tools for developers
|
|
apt-get install -y git astyle pep8 lcov clang sg3-utils pciutils shellcheck \
|
|
abigail-tools bash-completion ruby-dev
|
|
# Additional python style checker not available on ubuntu 16.04 or earlier.
|
|
apt-get install -y pycodestyle || true
|
|
# Additional dependencies for nvmf performance test script
|
|
apt-get install -y python3-paramiko
|
|
fi
|
|
if [[ $INSTALL_PMEM == "true" ]]; then
|
|
# Additional dependencies for building pmem based backends
|
|
if [[ $NAME == "Ubuntu" ]] && [[ $VERSION_ID_NUM -gt 1800 ]]; then
|
|
apt-get install -y libpmem-dev
|
|
apt-get install -y libpmemblk-dev
|
|
apt-get install -y libpmemobj-dev
|
|
fi
|
|
fi
|
|
if [[ $INSTALL_FUSE == "true" ]]; then
|
|
# Additional dependencies for FUSE and NVMe-CUSE
|
|
if [[ $NAME == "Ubuntu" ]] && ((VERSION_ID_NUM > 1400 && VERSION_ID_NUM < 1900)); then
|
|
echo "Ubuntu $VERSION_ID does not have libfuse3-dev in mainline repository."
|
|
echo "You can install it manually"
|
|
else
|
|
apt-get install -y libfuse3-dev
|
|
fi
|
|
fi
|
|
if [[ $INSTALL_RBD == "true" ]]; then
|
|
# Additional dependencies for RBD bdev in NVMe over Fabrics
|
|
apt-get install -y librados-dev librbd-dev
|
|
fi
|
|
if [[ $INSTALL_RDMA == "true" ]]; then
|
|
# Additional dependencies for RDMA transport in NVMe over Fabrics
|
|
apt-get install -y libibverbs-dev librdmacm-dev
|
|
fi
|
|
if [[ $INSTALL_DOCS == "true" ]]; then
|
|
# Additional dependencies for building docs
|
|
apt-get install -y doxygen mscgen graphviz
|
|
fi
|