-
Notifications
You must be signed in to change notification settings - Fork 22
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
Difficulty installing fathon on Linux #1
Comments
There was an error in the README, try |
In your specific case, |
@ali-ramadhan I have now changed the installation guidelines in the README.md, and GSL is no more required. Let me know if you still have problems with the installation. |
Hi @stfbnc, I should point out the instructions are not sufficient. Could be improved with the following suggestions:
pip install -r requirements.txt Better solutions to specify build requirements as
|
I followed your installation instructions in Ubuntu as it is now. But I get: ❯ python -c 'import fathon'
Traceback (most recent call last):
File "<string>", line 1, in <module>
File "/home/avmo/src/sandbox/venv-fathon/lib/python3.8/site-packages/fathon/__init__.py", line 19, in <module>
from .dfa import DFA
ImportError: libgsl.so.25: cannot open shared object file: No such file or directory I had to run: ❯ LD_LIBRARY_PATH="../venv-fathon/lib/python3.8/site-packages/fathon/fathonGSL/lib/" python -c 'import fathon' to make it work. Note that I am using a virtual environment. |
@ali-ramadhan @ashwinvis fathon is now available via pip and the user can choose to install GSL by themselves or let pip download and install it. @ashwinvis I have followed your suggestions. In the readme there are now also instructions for fathon installation in a virtual environment. |
Thank you so much! It looks much better now. I really appreciate the effort you took to improve the installation. |
@ali-ramadhan @ashwinvis Any news with the installation? |
@stfbnc I was able to install fathon on Arch Linux, thank you! A small hiccup with GSL that I mention in #2 but I'll close this issue as @ashwinvis also seems happy with the installation process. |
I installed
gsl
throughpacman
but ran into a few issues.The command given in step 3 of the README seems incorrect.
so I changed it to
so apparently I had to install install
Cython
. Googling brought me to CellProfiler/centrosome#78 so it was simple to fix and now I think I got it to start compiling but I ran into another issueApologies if I'm just doing something stupid. Just hoping to install fathon and try playing around with it.
Thanks so much!
The text was updated successfully, but these errors were encountered: