-
Notifications
You must be signed in to change notification settings - Fork 18
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
Getting Current Qupath Program #71
Comments
Hi @HistoCleanQUB, This is currently not provided by a public interface. As of now, you can get that information by doing: >>> from paquo.jpype_backend import find_qupath
>>> from paquo._config import to_kwargs, settings
>>> find_qupath(**to_kwargs(settings))
(PosixPath('/Applications/QuPath.app/Contents/app'),
PosixPath('/Applications/QuPath.app/Contents/runtime/Contents/Home'),
PosixPath('/Applications/QuPath.app/Contents/runtime/Contents/Home/lib/libjli.dylib'),
['-XX:MaxRAMPercentage=50', '-Djava.library.path=/Applications/QuPath.app/Contents/app']) You would usually configure your Cheers, |
A simple way to determine which version you a running is to execute:
in your commandline. (This of course doesn't let you differentiate in case you have the same version installed multiple times. |
That's fantastic thank you! I'm using paquo to run some deep learning models in pytoch then feed annotations back to QuPath. Just wondering if Ihad multiple versions of QuPath in the one search directory from the .toml file would there be a way to change to a specific version. Many thanks |
Glad I could help ❤️ In case you want to configure a specific version, you can set:
in your Cheers, |
Hi,
Really excellent work with this, just a quick question. Is there an easy way to get the file path of the QuPath Program directory that is being used in the paquo environment??
Hope this makes sense,
Many thanks
The text was updated successfully, but these errors were encountered: