Unanswered
In My Git Repo, I Have A
Hi BoredHedgehog47
Just make sure it is installed as part of the "installed packages" 🙂
You should end up with something likegit+
You can actually add it from your code:Task.add_requirements("git+
") task = Task.init(...)
Notice you can also add a specific commit or branch git+
https://github.com/user/repo.git@ <commit_id_here_if_needed>
Is this what you are looking for ?
EDIT:
you can also do "-e ." that should also work:Task.add_requirements("-e .") task = Task.init(...)
178 Views
0
Answers
2 years ago
one year ago