当前位置: 首页 > 知识库问答 >
问题:

在 VS Code 上的 conda venv 中安装 pip3 和 flake8

田瀚
2023-03-14

目标:让薄片8毛绒工作

我安装了一个新的康达venv。我尝试在命令面板中选择Flake8作为我的过梁。

更新:我已经安装了< code>pip和< code>flake8。但是,VS代码提示:

  • 未安装Linter flake8
  • 所选环境中没有pip安装程序。

Ubuntu Bash终端:

(sdg) me@PF2DCSXD:/mnt/c/Users/me/Documents/GitHub/foo/bar$ sudo apt-get install python3-pip
Reading package lists... Done
Building dependency tree       
Reading state information... Done
python3-pip is already the newest version (20.0.2-5ubuntu1.6).
0 upgraded, 0 newly installed, 0 to remove and 124 not upgraded.

(sdg) me@PF2DCSXD:/mnt/c/Users/me/Documents/GitHub/foo/bar$ pip install flake8
Requirement already satisfied: flake8 in /home/me/.local/lib/python3.8/site-packages (4.0.1)
Requirement already satisfied: pyflakes<2.5.0,>=2.4.0 in /home/me/.local/lib/python3.8/site-packages (from flake8) (2.4.0)
Requirement already satisfied: pycodestyle<2.9.0,>=2.8.0 in /home/me/.local/lib/python3.8/site-packages (from flake8) (2.8.0)
Requirement already satisfied: mccabe<0.7.0,>=0.6.0 in /home/me/.local/lib/python3.8/site-packages (from flake8) (0.6.1)
WARNING: You are using pip version 21.3.1; however, version 22.0.3 is available.
You should consider upgrading via the '/home/me/miniconda3/envs/sdg/bin/python -m pip install --upgrade pip' command.

<代码>。vscode/settings.json:

{
    "python.linting.flake8Enabled": true,
    "python.linting.enabled": true
}

我一直在研究这些解决方案,但运气不好

安装Pip

使用Flake8

共有1个答案

谢阳成
2023-03-14

我建议您适当地创建conda环境:

conda create -n "myenv" python

然后,激活环境:

conda activate myenv

最后,安装flake:

pip install flake8
 类似资料:
  • 在macOS上,我在终端中运行了这个命令: 它开始安装,然后抛出这个错误: 错误:命令出错,退出状态为1:/Library/framework/python . framework/Versions/3.8/bin/python 3.8-u-c ' import sys,setuptools,tokenize。sys . argv[0]= ' " ' " '/private/tmp/pip-ins

  • 我正在尝试使用pip3 install pygame安装pygame,但出现此错误: 错误: 命令错误,退出状态 1: 命令: /库/框架/Python.框架/版本/3.8/bin/python3.8 -u -c ' 导入系统, 安装程序工具, 标记化;sys.argv[0] = “”“”/私有/var/文件夹/5p/25vgdgh93qvg09z18wy0mg00000gn/T/pip-inst

  • 我正在尝试在我的计算机上安装新的python模块,我知道如何通过终端安装,但我想知道是否有办法直接通过VSCode安装新模块(就像在PyCharm上一样)? 我已经通过终端安装了,这不成问题,但是我想在我处理VSCode的时候不需要打开终端就可以安装。

  • 1.4.2 安装VScode VSCode 全称 Visual Studio Code,是微软出的一款轻量级代码编辑器,免费、开源而且功能强大。它支持几乎所有主流的程序语言的语法高亮、智能代码补全、自定义热键、括号匹配、代码片段、代码对比 Diff、GIT 等特性,支持插件扩展,并针对网页开发和云端应用开发做了优化。软件跨平台支持 Win、Mac 以及 Linux。 1.下载 vscode 下载:

  • 我在Mac上运行“pip3安装psycopg2”时遇到了这个错误。 我想第一次安装psycopg2。 我尝试了pip,从GitHub安装。然而,这两次都失败了。 有人能帮帮我吗?我真的很感激!

  • 无法获取URLhttps://pypi.python.org/simple/jupyter/:确认ssl证书时出现问题:[ssl:certificate\u VERIFY\u FAILED]certificate VERIFY FAILED(\u ssl.c:748)-跳过 我使用的是Windows 7机器,Python 3.6版本和pip版本是9.0.1。