leandromoreira / digital_video_introduction

A hands-on introduction to video technology: image, video, codec (av1, vp9, h265) and more (ffmpeg encoding). Translations: 🇺🇸 🇨🇳 🇯🇵 🇮🇹 🇰🇷 🇷🇺 🇧🇷 🇪🇸
https://github.com/leandromoreira/introduction_video_technology
BSD 3-Clause "New" or "Revised" License
15.28k stars 1.32k forks source link

Specify tag to `jupyter/scipy-notebook` image #117

Closed yuji38kwmt closed 3 years ago

yuji38kwmt commented 3 years ago

close #115

scipy.misc.bytescale method does not exists in jupyter/scipy-notebook:latest docker image, because latest image contains scipy 1.6.3. scipy.misc.bytescale module was deprecated when v1.0.0 was released.

I specified tag to jupyter/scipy-notebook image. https://hub.docker.com/layers/jupyter/scipy-notebook/387f29b6ca83/images/sha256-d4953b52e6a53736aab92b5f82a764f71f8592851a54dff513e0c82ba1cc6c02?context=explore

import sys
sys.version
# '3.5.2 |Continuum Analytics, Inc.| (default, Jul  2 2016, 17:53:06) \n[GCC 4.4.7 20120313 (Red Hat 4.4.7-1)]'

import scipy
scipy.__version__
# '0.17.1'
leandromoreira commented 3 years ago

This tag was added here:

https://github.com/jupyter/docker-stacks/pull/344

leandromoreira commented 3 years ago

thanks a lot @yuji38kwmt