mirror of
				https://github.com/neovim/neovim.git
				synced 2025-10-26 12:27:24 +00:00 
			
		
		
		
	fix(health): update advice for Python #35564
Problem: `:checkhealth` advice for Python is out-of-date.
Solution: Update the advice to point to `:help provider-python`.
(cherry picked from commit f311c96973)
			
			
This commit is contained in:
		 Michael Henry
					Michael Henry
				
			
				
					committed by
					
						![github-actions[bot]](/assets/img/avatar_default.png) github-actions[bot]
						github-actions[bot]
					
				
			
			
				
	
			
			
			![github-actions[bot]](/assets/img/avatar_default.png) github-actions[bot]
						github-actions[bot]
					
				
			
						parent
						
							b032c2b53f
						
					
				
				
					commit
					edfb447ff8
				
			| @@ -724,10 +724,9 @@ local function python() | ||||
|       local message = 'Detected pip upgrade failure: Python executable can import "pynvim" but not "neovim": ' | ||||
|         .. pynvim_exe | ||||
|       local advice = { | ||||
|         'Use that Python version to reinstall "pynvim" and optionally "neovim".', | ||||
|         'Use that Python version to uninstall any "pynvim" or "neovim", e.g.:', | ||||
|         pynvim_exe .. ' -m pip uninstall pynvim neovim', | ||||
|         pynvim_exe .. ' -m pip install pynvim', | ||||
|         pynvim_exe .. ' -m pip install neovim  # only if needed by third-party software', | ||||
|         'Then see :help provider-python for "pynvim" installation steps.', | ||||
|       } | ||||
|       health.error(message, advice) | ||||
|     end | ||||
| @@ -753,7 +752,7 @@ local function python() | ||||
|     if is_bad_response(current) then | ||||
|       health.error( | ||||
|         'pynvim is not installed.\nError: ' .. current, | ||||
|         'Run in shell: ' .. python_exe .. ' -m pip install pynvim' | ||||
|         'See :help provider-python for "pynvim" installation steps.' | ||||
|       ) | ||||
|     end | ||||
|  | ||||
|   | ||||
		Reference in New Issue
	
	Block a user