+ 1
Are we able to import other module libraries and use them on the playground here?
Can I somehow use the graphics.py from zelles library in this app?
2 Respuestas
+ 7
You can use this little trick to temporarily install few libraries here.
import sys,subprocess
def install(package):
subprocess.call([sys.executable, "-m","pip","-q", "install", package])
install('your_library')
import your_library
...
+ 1
Thank you!