无法在谷歌云运行上安装 jsonnet

时间:2020-12-26 13:51:29

标签: python google-cloud-run jsonnet

我正在尝试使用 jsonnet python 包构建用于在 google cloud 上部署代码的映像,但无法安装 jsonnet,并出现以下错误。有什么想法可以解决这个问题吗?

Running setup.py install for jsonnet: started
Running setup.py install for jsonnet: finished with status 'error'
[91m    ERROR: Command errored out with exit status 1:
     command: /usr/local/bin/python -u -c 'import sys, setuptools, tokenize; sys.argv[0] = '"'"'/tmp/pip-install-omf9pb8l/jsonnet_ec2d6dbf69014cee8b4fe5227a52a519/setup.py'"'"'; __file__='"'"'/tmp/pip-install-omf9pb8l/jsonnet_ec2d6dbf69014cee8b4fe5227a52a519/setup.py'"'"';f=getattr(tokenize, '"'"'open'"'"', open)(__file__);code=f.read().replace('"'"'\r\n'"'"', '"'"'\n'"'"');f.close();exec(compile(code, __file__, '"'"'exec'"'"'))' install --record /tmp/pip-record-3h0ew2u0/install-record.txt --single-version-externally-managed --compile --install-headers /usr/local/include/python3.8/jsonnet
         cwd: /tmp/pip-install-omf9pb8l/jsonnet_ec2d6dbf69014cee8b4fe5227a52a519/
    Complete output (4 lines):
    running install
    running build
    running build_ext
    error: [Errno 2] No such file or directory: 'make'
    ----------------------------------------

1 个答案:

答案 0 :(得分:1)

正如 DazWilkin 先生所说,错误与编译有关。要解决此问题,您必须使用 make

安装 apt-get -y install build-essential

例如 RUN apt update -y && apt -y install build-essential git && git clone https://github.com/google/jsonnet.git && cd jsonnet && make

For more information