-
-
Notifications
You must be signed in to change notification settings - Fork 232
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
error: invalid command 'bdist_wheel' when install pyls #70
Comments
Which version of python do you use? |
python --version python3 --version |
vim-lsp-settings does not support Python2. So /path/to/the/python must be Python3 always. |
I saw that python3 is specified in |
I change python ln, but the error is also
|
Ooops, sorry. I looked only Windows installer. https://github.com/mattn/vim-lsp-settings/blob/master/installer/pip_install.cmd#L6 |
So, please undo the operation #70 (comment) What OS do you use? Which way of installation instruction of python? |
debian 10 stable. |
Thanks. Could you please try this patch? diff --git a/installer/pip_install.sh b/installer/pip_install.sh
index b5ee120..4e3014d 100755
--- a/installer/pip_install.sh
+++ b/installer/pip_install.sh
@@ -6,5 +6,6 @@
set -e
python3 -m venv ./venv
+./venv/bin/pip3 install -U pip
./venv/bin/pip3 install "$2"
ln -s "./venv/bin/$1" . |
great, after update pip, it have not error. |
Okay, will fix pip_install.sh |
but after install , pyls can work, Does this error have any effect ?
The text was updated successfully, but these errors were encountered: