赞
踩
pycharm官方:https://www.jetbrains.com/help/pycharm/remote-debugging-with-product.html
默认情况下我们在本地开发Python程序时,使用的是本地的Python解释器,如果你安装了virtualenv或者pyenv的话,还可以选择这些虚拟环境。而使用Pycharm的专业版,则还可以选择使用远程Linux机器上的解释器。下面就来介绍下使用远程解释器的步骤。
远程部署主要用于本地代码与远程服务器上的代码进行同步,使得的本地代码在经过修改后,可以很容易的同步到远程服务器上。因为只有本地代码和远程服务器上的代码一致时,才能正确使用远程解释器进行调试。
选择Tools -> Deployment -> Configuration…
添加sftp
添加ssh
远程部署仅仅只是同步和拷贝文件,而真正支持远程调试的则是远程解释器。
在Pycharm中选择File -> Settings -> Project:xxx -> Project Interpreter -> Add Remote
选择使用远程解释器
注意:需要保证解释器的地址是正确的,而且path mappings也是对的
PyCharm配置远程python解释器可以实现:
pycharm远程服务器运行Can‘t run remote python interpreter:Can‘t get remote credentials for deployment server
参考URL:https://blog.csdn.net/weixin_44633882/article/details/100635364
需要保证解释器的地址是正确的,而且path mappings也是对的
Pycharm配置远程调试
参考URL: https://blog.csdn.net/five3/article/details/78615589
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。