The general term remote is used to denote anything that is not physically connected to your computer but can be connected and operated on. You might be familiar with the process of logging in to a remote server via the ssh command.
In PyCharm, it is possible to connect the work environment with a Python interpreter in a remote server. There might be many reasons why we would want to do this. For example, using the remote interpreter means that our local computer does not need to execute any command, thus saving us some computing resources. Moreover, since the interpreter is on a remote server, other programmers might have access to it as well. In other words, many people have the ability to share the same ...