Giter Club home page Giter Club logo

Comments (6)

yyoncho avatar yyoncho commented on June 14, 2024 1

Can I only add a new workspace-folder without removing the old one, as shown below?

Is there anything preventing you from testing this on your side?

from lsp-pyright.

yyoncho avatar yyoncho commented on June 14, 2024

make sure that your project root is the correct one. Use M-x lsp-describe-session

from lsp-pyright.

hongyi-zhao avatar hongyi-zhao commented on June 14, 2024

How to know whether the project root directory is correct or not? For example, the following one:

image

from lsp-pyright.

yyoncho avatar yyoncho commented on June 14, 2024

Project root is the folder that contains the files that you want to work on. It is usually git repository. In your case you have selected your home folder which is wrong. As a result the language server is scanning all files in your home folder and that's why it is crashing.

Use M-x lsp-workspace-folders-add/remove to fix the project root.

from lsp-pyright.

hongyi-zhao avatar hongyi-zhao commented on June 14, 2024

Can I only add a new workspace-folder without removing the old one, as shown below?

image

from lsp-pyright.

hongyi-zhao avatar hongyi-zhao commented on June 14, 2024

Thank you, I reinstalled pyrigt as follows, according to the commented here:

$ yarn global add pyright
$ export PATH=$HOME/.yarn/bin:$PATH

Then I use pyvenv to automatically set the current workspace-folder as follows:

(use-package pyvenv
  :init
  (setenv "WORKON_HOME" "~/.pyenv/versions")
  ;;https://lists.gnu.org/archive/html/help-gnu-emacs/2021-09/msg00535.html
  (defun try/pyvenv-workon ()
    (when (buffer-file-name)
      (let* ((python-version ".python-version")
             (project-dir (locate-dominating-file (buffer-file-name) python-version)))
        (when project-dir
	  (progn
	    ;; https://github.com/emacs-lsp/lsp-pyright/issues/62#issuecomment-942845406
	    (lsp-workspace-folders-add project-dir)
	    (pyvenv-workon
             (with-temp-buffer
               (insert-file-contents (expand-file-name python-version project-dir))
               (car (split-string (buffer-string))))))
	  ))))
  :config
  (pyvenv-mode 1)

  (setq pyvenv-post-activate-hooks
        (list (lambda ()
                (when (executable-find "ipython3")
                  (setq python-shell-interpreter "ipython3"
                        python-shell-interpreter-args "-i --matplotlib=inline --automagic --simple-prompt --pprint"
                        ;; https://gitlab.com/python-mode-devs/python-mode/-/issues/112#note_699461188
                        py-ipython-command "ipython3"
                        py-ipython-command-args '("-i" "--matplotlib=inline" "--automagic" "--simple-prompt" "--pprint")
                        )))))
  (setq pyvenv-post-deactivate-hooks
        (list (lambda ()
                (setq python-shell-interpreter "python3"))))
  )

The above method will fix the problem discussed here. See the info given by M-x lsp-describe-session:

image

from lsp-pyright.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.