A19grey's picture
Updating to new 3D visualizer molgallery3D and need to restart space to install
0f5f6d3
raw
history blame contribute delete
206 Bytes
import subprocess
import sys
def install_requirements():
subprocess.check_call([sys.executable, "-m", "pip", "install", "-r", "requirements.txt"])
if __name__ == "__main__":
install_requirements()