まずPillowをColab上にインストール
pytohnコード
!pip install Pillow==7.0.0
#画像読み込み
これでとりあえず画像取得できる。
pytohnコード
from PIL import Image
import requests
import io
url = 'https://www.python.org/static/community_logos/python-logo-master-v3-TM.png'
img = Image.open(io.BytesIO(requests.get(url).content))
img
Colab URL
参考URL