Johannes Schmidt
Johannes Schmidt

Reputation: 410

Pycharm: How to open a Python console with a program

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

Answers (1)

Johannes Schmidt
Johannes Schmidt

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."

Link to his answer

But running vlgrun with pycharm does actually the trick for me.

Upvotes: 1

Related Questions