Reputation: 410
When I open a python console, pycharm executes the following in a terminal:
/Some/Path/python3.7 /Path/To/Some/Script/Like/pydevconsole.py --mode=client --port=34215
How can I edit this to get it to run with a program like vglrun, so that it looks like:
/opt/VirtualGL/bin/vglrun /Some/Path/python3.7 /Path/To/Some/Script/Like/pydevconsole.py --mode=client --port=34215
Upvotes: 1
Views: 169
Reputation: 410
Sergey Karpov from JetBrains "You can't. It is possible to customize Starting script in File | Settings | Build, Execution, Deployment | Console | Python Console, but not possible to use another executable."
But running vlgrun with pycharm does actually the trick for me.
Upvotes: 1