|
From: Thomas H. <tho...@sc...> - 2020-11-17 12:10:28
|
Hi Yannis,
Here is a way to suppress it (not very elegant, sorry):
from pymol import cmd
if cmd._COb is None:
import pymol2
import pymol.invocation
pymol.invocation.parse_args(['pymol', '-q']) # optional, for quiet flag
pymol2.SingletonPyMOL().start()
Cheers,
Thomas
> On Nov 15, 2020, at 3:05 PM, Ioannis Riziotis <riz...@eb...> wrote:
>
> Good afternoon,
>
> I am using pymol as a python library for a pipeline, in which I just use some fitting functions (no GUI). Is there a way to suppress the warning ‘PyMOL not running, entering library mode (experimental)’?
>
> Thanks,
> Yannis
>
> _______________________________________________
> PyMOL-users mailing list
> Archives: http://www.mail-archive.com/pym...@li...
> Unsubscribe: https://sourceforge.net/projects/pymol/lists/pymol-users/unsubscribe
--
Thomas Holder
PyMOL Principal Developer
Schrödinger, Inc.
|