Skip to content

Commit

Permalink
Placeholder for is_bentoml_ersilia_version
Browse files Browse the repository at this point in the history
  • Loading branch information
miquelduranfrigola committed Jun 21, 2023
1 parent b352d6b commit 3404f34
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion ersilia/setup/requirements/bentoml.py
Original file line number Diff line number Diff line change
Expand Up @@ -14,9 +14,12 @@ def is_installed(self):
except ImportError:
return False

def is_bentoml_ersilia_version(self):
pass

def install(self):
print("Installing bentoml (the ersilia version)")
cmd = "{0} -m pip install git+https://github.com/ersilia-os/bentoml-ersilia.git".format(
cmd = "{0} -m pip install -U git+https://github.com/ersilia-os/bentoml-ersilia.git".format(
sys.executable
)
subprocess.Popen(cmd, shell=True).wait()

0 comments on commit 3404f34

Please sign in to comment.