How does one install PyTorch and related tools from within the setup.py install_requires list?

I was using python 3.9, mac os X, macbook pro, let me think what else and try without those equalities…

I am using torchmeta: pytorch-meta/setup.py at master · tristandeleu/pytorch-meta · GitHub that has

install_requires=[
        'torch>=1.4.0,<1.10.0',
        'torchvision>=0.5.0,<0.11.0',
        'numpy>=1.14.0',
        'Pillow>=7.0.0',
        'h5py',
        'tqdm>=4.0.0',
        'requests',  # Required by Torchvision
        'ordered-set'
    ],