gpt4 book ai didi

python - 无法在 Google AI 平台 (CMLE) 上安装 pycocotools

转载 作者:太空宇宙 更新时间:2023-11-04 01:45:26 25 4
gpt4 key购买 nike

我在 AI-Platform 上安装 trainer 包时遇到这个错误,

Traceback (most recent call last): File "", line 1, in File "/tmp/pip-install-_u8thvm6/pycocotools/setup.py", line 2, in from Cython.Build import cythonize ImportError: No module named 'Cython'

尽管我在 setup.py 中包含了 'Cython'

setup.py:

import setuptools

NAME = 'trainer'
VERSION = '1.0'
REQUIRED_PACKAGES = [
'Cython', # Cython, mentioned before pycocotools
'tensorflow-gpu',
'google-cloud-storage',
'gcsfs',
'pycocotools'
]

setuptools.setup(
name=NAME,
version=VERSION,
packages=setuptools.find_packages(),
install_requires=REQUIRED_PACKAGES,
include_package_data=True,
description='Trainer package')

最佳答案

运行setup.py前需要先安装cython。问题是在构建时需要 cython,而不是运行时,并且无法保证您在 install_requires 中列出的包的安装顺序。因此,当 pip 尝试安装 pycocotools 时,它尚未安装 cython 并中止。

关于python - 无法在 Google AI 平台 (CMLE) 上安装 pycocotools,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/59154494/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com