-
Notifications
You must be signed in to change notification settings - Fork 1
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
NEUR1630 Github Dependency #105
Conversation
@digicosmos86 Might need to call in some help on this one... I've added the appropriate line to the requirements.txt file, but it looks like it can't find the repository when building it in the github action. If I do it locally, I can install it however. $ python3 -m venv .venv
$ source .venv/bin/activate
$ pip -U install git+https://github.com/alleninstitute/abc_atlas_access.git I also know that you can install through a requirements.txt like this because it's how I wrote the TC Cloud Model package. Any thoughts why the Github Action runner wouldn't be able to find this? |
Okay it's because the requirement.txt is actually installed by conda/mamba, which do not support installing from git. Looking for solutions, Hold on a sec |
Oh @anna-murphy you can actually add it to |
Good catch! This is good to merge whenever~ |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
LGTM!
Adds
git+https://github.com/alleninstitute/abc_atlas_access.git
as a dependency in requirements.txt for the NEUR1630 image.