From ecae7ffa6170c42ec58119166ddb56795b491cda Mon Sep 17 00:00:00 2001 From: Jack Rosenthal Date: Tue, 13 Feb 2024 00:32:46 -0700 Subject: [PATCH] cli_launcher: Install from PyPI --- cli_launcher.py | 6 +----- 1 file changed, 1 insertion(+), 5 deletions(-) diff --git a/cli_launcher.py b/cli_launcher.py index bea7592..6589d6d 100755 --- a/cli_launcher.py +++ b/cli_launcher.py @@ -87,11 +87,7 @@ def build_venv() -> None: with_pip=True, ).create(get_venv_dir()) quiet_run([venv_cmd("python"), "-m", "pip", "install", "--upgrade", "pip"]) - url = os.environ.get( - "ALGOBOWL_URL", - "https://github.com/jackrosenthal/algobowl/archive/refs/heads/main.zip", - ) - quiet_run([venv_cmd("python"), "-m", "pip", "install", "--upgrade", url]) + quiet_run([venv_cmd("python"), "-m", "pip", "install", "--upgrade", "algobowl"]) def update_venv() -> None: