Fastai v1 install issues thread

Hi,

I’m trying to submit a job to Google Cloud Platform (see AI Platform and Packaging) for a fastai project. It terminates on the installation with error:

ERROR: Package ‘trainer’ requires a different Python: 2.7.9 not in ‘>=3.7’

I know fastai requires python 3, but I can’t seem to get python 3 from the setup.py:

from setuptools import find_packages
from setuptools import setup

REQUIRED_PACKAGES = [‘torch>=1.3.0’, ‘fastai>=1.0.59’]

setup(
name=‘trainer’,
python_requires=’>=3.7’,
version=‘1.0’,
install_requires=REQUIRED_PACKAGES,
packages=find_packages(),
include_package_data=True,
description=‘My training application package.’
)

Thanks