Thanks for your feedback. Based on your comments above, it seems you want to configure a custom environment in AML designer and install unsupported python libraries. These are the supported Custom Environments. However, in AML designer, the execute python script component enables you to write custom python scripts and install python libraries. This particular document shows how to configure execute python script. You can install packages that aren't in the preinstalled list by using the following command:
import os
os.system(f"pip install scikit-misc")
--- *Kindly Accept Answer if the information helps. Thanks.*