Closed mw55309 closed 7 years ago
I mean it seems to me that this line:
else:
exit(call(['./blobtools', '-h']))
in blobtools.py assumes that blobtools is in the current working director?
Hi Mick,
not dumb at all ... I think you actually found a bug. If no argument is provided it nopes out. But if you provide the name of any of the commands (create
, view
, etc ...) it should work.
Can you confirm that
/PATH/TO/BLOBTOOLS/blobtools create -h
works?
cheers,
dom
Hi Dom
It does and this can be fixed by putting the full path in
else:
exit(call(['./blobtools', '-h']))
As you can see from that code, it assumes blobtools executeable is in the CWD
Cheers Mick
Hi Mick,
fixed it in the branch 'master' ...
cheers,
dom
Hey Dom
Sorry for being dumb, I'm sure this is my issue, but nonetheless I could do with some help.
So I have python2.7.3 installed via conda. I activate the environment and install according to your instructions. It all works!
However, I don'#t want to be in the blobtools directory to run it. But if I go outside:
Sorry I am not knowledgeable enough about Python to figure this out, though have done 100s of python installs
Any idea why this is happening?
Mick