Skip to content Skip to sidebar Skip to footer

Is It Possible To Easily Extract Python Run Configuration (with Additional Path) From Pycharm?

I have a working Python project on my PC, which I am running from Pycharm. It uses Pyroot (an interface to Root C++ library), whose C++ lib path I have added in Project Settings/Py

Solution 1:

I guess to best way is to create a virtualenv either in the terminal or in pycharm including the corrext python version 2.7 and install pyroot via pip into this virtualenv. Then you can simply ssh in the remote host, activate the venv and start your project from the terminal. Or you ssh into it with X-forwarding and start Pycharm itself from your client.

Solution 2:

If you select the correct project and go to File > Settings, under the Project Settings you can see the Project Interpreter which tells you which interpreter is being used.

Hope this is what you are looking for.

Post a Comment for "Is It Possible To Easily Extract Python Run Configuration (with Additional Path) From Pycharm?"