跳到主要内容
版本:0.17.0+

pycharm bugfix

terminal 中的 venv-py 与 project 中的 venv-py 不同

问题复现

我在 A 工程中创建了一个 venv-py interpreter,at the beginning, it just runs well.

However, after when I closed this project and moved this project root to another place (i.e, changed the father structure position of the disk), my IDE couldn't recognize the project python interpreter any more.

解决方案

After a bit of search, I finally find a solution to this problem at: https://intellij-support.jetbrains.com/hc/en-us/community/posts/360003509599-Different-Python-version-in-Terminal-and-PyCharm-despite-using-the-very-same-venv-and-path, in which it suggests me to delete venv directory, then create a new interpreter

I did accordingly, and then I managed to find it works!

here is a comparison of python path between two terminals before and after I did the 'delete and create':

picture 1picture 2

Thanks!