How can I do pycharm remote execution using system environment variables?

I am using pycharm remote execution to run scripts on a remote server. I saw that bash_profile (or other startup scripts) are not executing - is there a way to do this?

preferably not in the “launch configurations” that are needed for each script (I have many scripts), but in the general configuration

+4
source share
1 answer

The problem is not related to Pycharm.

You must add the environment variable to the remote machine ~ / .bashrc

VAR="VALUE"
export VAR

SSH , ?

Vagrant,

0

Source: https://habr.com/ru/post/1622692/


All Articles