问题
PyCharm Professional has a nice feature of remote development -- developing codes on your local machine and running them on a remote server. Without PyCharm Professional, what would be a good way of mimicking this feature? I really like PyCharm so I won't give up for another IDE. I used to package the codes into an egg file and sftp it to a remove server but this is cumbersome, since I have to make the setup files, etc.
Thanks in advance for your suggestion.
回答1:
use winscp to keep your remote directory in sync
install ssh
add external tool of "run remote" (I assume this is available)
ssh user@remote.com -t "cd /path/to/proj && python myproj.py"
if you have ssh keys setup it should just work ... if not you will probably be prompted for a password
来源:https://stackoverflow.com/questions/44396067/what-is-the-best-way-of-doing-a-remote-development-using-pycharm-community-versi