我是新来的。我正在尝试按照 Atom.io 提供的说明在 Atom 上设置 python IDE。
https://atom.io/packages/ide-python
有一条指令:
“根据您的 Python 设置,pyls 可能安装在非默认文件夹中。在这种情况下,请将目录添加到您的 PATH 或编辑 ide-python 的“Python 语言服务器路径”设置以指向 pyls 可执行文件。”
我卡在这里了。
这是什么意思?如何将其添加到PATH?
最佳答案
就我而言,它失败了,因为 pyls 不适用于 Python 2.7
错误
error in python-language-server setup command: 'install_requires' must be a string or list of strings containing valid project/version requirement specifiers; Expected version spec in configparser; python_version<"3.0" at ; python_version<"3.0"
所以我安装了 Python 3.6 并跟着你注意强制 3.6
python3.6 -m pip install python-language-server[all]
这就是诀窍。谢谢!
关于python - 使用 Python 语言服务器实现 Atom,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/48896002/