@David Eeckhout The packages installed in the designer version of the studio are listed here which uses the following versions:
scikit-learn==0.22.2
scipy==1.4.1
The classic version of the studio is still available but it is preferable to use the designer studio which has better support for some of the pre-installed packages.
If you prefer to use classic version then if the package is not available you can try installing it in the execute python script. For example,
import importlib.util
package_name = 'scikit-misc'
spec = importlib.util.find_spec(package_name)
if spec is None:
import os
os.system(f"pip install scikit-misc")
Hope this helps.