pycharm 版本 : 2023.2.1
整体流程参考:https://blog.csdn.net/xuanhaolaile/article/details/128293254
首先确定远程服务器上已经安装好 requirements.txt 中所需的依赖包。
1、SSH Configurations
添加远程服务器
2、Python Interpreter
注意:设置 Python Interpreter 的同时,pycharm 会自动添加一个 Deployment ,所以不再需要单独去添加一个 Deployment 了。
Add Interpreter --->On SSH
设置远程服务器
选择 System Intepreter,并设置 Sync folders
检查一下远程服务上的依赖包安装情况,确保之后项目能正常运行
3、Deployment
在设置 Python Interpreter 的时候,pycharm 自动添加了一个 Deployment ,找到 Deployment 设置项,可看到以 root@ipAddress 命名的Deployment 。
按照图示设置3个地方即可。这里重命名为 remote。
回到主界面,在 Tools --->Deployment 菜单里可看到上传和下载的选项
设置过程中的注意事项
1、设置 SSH Configurations 时,要取消勾选 Visible only for this project 和 Parse config file ~/.ssh/config
2、设置 Deployment 时,要取消勾选 Visible only for this project 并设置编码为 utf-8
3、如果全部设置好后运行报错:
Cannot find remote credentials for target config com.jetbrains.plugins.remotesdk.target.webDeployment.WebDeploymentTargetEnvironmentConfiguration@1cb1d48
删除刚才所有设置,重新走一遍设置流程即可