-
Notifications
You must be signed in to change notification settings - Fork 135
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
Change directories before pip installation on M1 mac install #188
base: main
Are you sure you want to change the base?
Conversation
Thank you for your PR. Meanwhile, I've tried to find the reason why I can't install localcolabfold on my M1 mac in these days. Thus I was unable to verify the Issue or PR. Today, I've finally figured out the cause, maybe |
I'll test that, sure. I will also say that while trying to install locally, the conda environment would not start from inside the bash script, which caused a lot of havoc with other conda installations I had on my machine, and led to me having to uninstall all conda versions before being able to install properly. The conda activate command repeatedly errored saying activate was not a valid option. I cannot say if fixing that would fix the other issue I had that was also resolved with the reinstallation of conda where I could not download the tensorflow-deps package at all. |
I got an error on line 38 that there is no such file as /localcolabfold/conda/etc/profile.d/conda.sh |
This message is curious. It means that variables Expected values: CURRENTPATH=`pwd`
COLABFOLDDIR="${CURRENTPATH}/localcolabfold"
echo "CURRENTPATH = ${CURRENTPATH}"
# CURRENTPATH = /Users/moriwaki/Desktop
echo "COLABFOLDDIR = ${COLABFOLDDIR}"
# COLABFOLDDIR = /Users/moriwaki/Desktop/localcolabfold
# exit here
exit 0 You suggested adding
|
I got the same error on the second attempt at the install with the echos built in, but when I added an echo 'test' to check where things were reaching and erroring with a bit more granularity, it ran ok. |
@YoshitakaMo the update script also assumes the incorrect location of the colabfold-conda directory, as that is generated in a subdirectory, and also does not currently retrieve the current directory. Would you like me to submit a PR for that? |
I had the same issue as #180, and found that the binary was being called from the wrong location in the filesystem. Just added a directory change to be able to find the files