gpt4 book ai didi

python - 通过 SSH 为远程 Python 解释器配置 Visual Studio Code

转载 作者:太空狗 更新时间:2023-10-30 01:25:02 27 4
gpt4 key购买 nike

我有一个带有 ArchLinux 和 Python 的 Vagrant box,它为每个项目使用一个虚拟环境(通过使用特定的 Python 版本)。我希望配置 VSC 以运行/调试这些 Python 项目。我已经挂载了包含我的项目的目录(使用 sshfs),所以我不必担心同步问题。

使用 PyCharm,配置仅在其 IDE 中进行。如何使用 SSH 为 VSC 配置它?使用 Python 还需要哪些其他插件?

提前致谢。

PS1:PyCharm 是一个很棒的工具,但它占用大量资源,RAM 接近 1GB。

PS2:我读过this article但我不清楚,一个例子更有用。

最佳答案

帖子Define remote interpreter on remote Linux machine using Pydev and RSE Server真的很有用,现在看起来很明显。这是我使用自己的系统配置的解决方法:

第 1 步:装载您的远程主文件夹。

$ sshfs -o password_stdin,transform_symlinks vagrant@localhost:/home/vagrant ~/Vagrant/archi02/Remote/ -p 2222 <<< "your_vagrant_password"

第 2 步:使用 VSC 打开您的项目文件夹。

~/Vagrant/archi02/Remote/Projects/Python_3_7_2/QuickPythonBook/

第 3 步:为远程 Python 和 linter 配置“settings.json”(来自 WorkSpace Settings)。

{
"python.pythonPath": "~/Vagrant/archi02/Remote/Projects/Python_3_7_2/QuickPythonBook/ve_qpb/bin/python3.7",
"python.linting.pylintEnabled": true,
"python.linting.pylintPath": "pylint"
}

第 4 步:享受编程的乐趣。不客气。

关于python - 通过 SSH 为远程 Python 解释器配置 Visual Studio Code,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/52992896/

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com