I am trying to run xfuse on the supercomputer system; I'm not an expert but I do manage to run other programs.
When I run xfuse
xfuse convert st --counts section1.tsv --image section1.jpg --transformation-matrix section1-alignment.txt --scale 0.15 --save-path section1
I get the following:
Traceback (most recent call last):
File "/mydir/xfuse/bin/xfuse", line 5, in
from xfuse.main import cli
ModuleNotFoundError: No module named 'xfuse'
So the problem here is he thinks __main__ is located in mydir/xfuse/bin/xfuse, while in reality, it is located in mydir/xfuse/
The export path is set to the bin directory, otherwise he doesnt find xfuse. But now it seems like the other files cannot be found
What am I doing wrong here???
Kind regards,
Nicolaas
I am trying to run xfuse on the supercomputer system; I'm not an expert but I do manage to run other programs.
When I run xfuse
xfuse convert st --counts section1.tsv --image section1.jpg --transformation-matrix section1-alignment.txt --scale 0.15 --save-path section1I get the following:
So the problem here is he thinks
__main__is located in mydir/xfuse/bin/xfuse, while in reality, it is located in mydir/xfuse/The export path is set to the bin directory, otherwise he doesnt find xfuse. But now it seems like the other files cannot be found
What am I doing wrong here???
Kind regards,
Nicolaas