代码之家  ›  专栏  ›  技术社区  ›  Martin Thoma

VS代码中使用了哪种Python环境?如何安装额外的软件包?

  •  0
  • Martin Thoma  · 技术社区  · 4 年前

    我在控制台上使用带有pyenv的ubuntu20.04来选择Python版本。

    有关以下内容,请参见下面的屏幕截图。

    enter image description here

    我的 launch.json :

    {
        "version": "0.2.0",
        "configurations": [
            {
                "name": "Python: Current File",
                "type": "python",
                "request": "launch",
                "program": "${file}",
                "console": "integratedTerminal"
            }
        ]
    }
    

    VS代码(使用pylance)使用哪种环境?如何让它使用pyenv环境?在该环境中安装所需软件包是否还有其他选择?

    将其添加到“设置”中的“附加”中:

    enter image description here

    在控制台中安装:

    enter image description here

    0 回复  |  直到 4 年前
        1
  •  0
  •   Jill Cheng    4 年前
    1. 因为我们使用 pip astor “,来源 皮普 用于确定模块的安装位置。我们可以使用“ pip --version pip3 --version 皮普 :

      enter image description here

    2. “使用” 皮普 “要安装” 阿斯特 pip install astor “或” pip3 install astor ".

    3. pip list ":

      enter image description here

    4. enter image description here

    安装模块的其他方法:

    在“Anaconda”已经安装的前提下,使用conda在VSCode中安装模块: conda install astor

    enter image description here

    更多使用请参考: Environment in VSCode.

    enter image description here

    请尝试重新加载VSCode或重新打开VSCode。