Closed
Description
I'm trying to install this so I can use it with atom, but it's not working.
I'm running python 2.7.10
on OSX 10.13.4. I get the following issue:
| => pip install 'python-language-server[all]'
Collecting python-language-server[all]
Using cached https://files.pythonhosted.org/packages/02/0b/1734eb9762da057606514c018620145cd4e414e79679877db08bfb22cf0e/python-language-server-0.18.0.tar.gz
Complete output from command python setup.py egg_info:
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"
Help
Activity
gatesn commentedon May 10, 2018
@SirWellington can you run
pip install -U setuptools
and try again?SirWellington commentedon May 10, 2018
I should mention, I'm new to Python…
Per your suggestions, I get this error:
gatesn commentedon May 10, 2018
The default OSX Python forbids you from using
pip install
unless you pass the--user
flag. I suggest instead of doing that, you install python using HomeBrew: http://docs.python-guide.org/en/latest/starting/install3/osx/SirWellington commentedon May 10, 2018
I appreciate the help. These cryptic messages aren't really beginning-friendly!
gatesn commentedon May 10, 2018
Absolutely agree. Happy to add things to README if it would help
SirWellington commentedon May 10, 2018
I think that would be helpful.
I finally figured it out. I had to install python using brew.
Commands:
That's all!