artdwn's picture
Upload folder using huggingface_hub
3a1d71c
raw
history blame contribute delete
360 Bytes
# installer script for some PyPI packages we need...
import launch
pkgs = [
{"fake_useragent": "fake-useragent"},
{"PIL": "PIL"},
{"requests": "requests"}
]
for pkg in pkgs:
key, val = next(iter(pkg.items()))
if not launch.is_installed(key):
launch.run_pip(f'install {val}', "requirements for CivitAI Browser")