0
how to install the muddle
python muddle
3 Answers
+ 1
are you trying to install a module in the playground? If so, try this:
def install(m):
import os
return os.system(f'pip -q install {m}')
install('seaborn') #replace seaborn with your module
0
pip install ?
0
thank you