From 64b2352e0fd032788f98b9fcb743646464c9d87f Mon Sep 17 00:00:00 2001 From: tech234a <46801700+tech234a@users.noreply.github.com> Date: Fri, 25 Sep 2020 16:54:49 -0400 Subject: [PATCH] Fix install --- http3.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/http3.py b/http3.py index 7731972..6428a24 100644 --- a/http3.py +++ b/http3.py @@ -8,7 +8,7 @@ if isfile("../Procfile") and isfile("../requirements.txt"): if HEROKU: if not "aioquic" in open("../requirements.txt").read(): print("Installing aioquic on this Heroku instance since it wasn't installed on deploy...") - system("pip install --user aioquic") + system("python3 -m pip install --user aioquic") import asyncio from typing import cast