VS code下使用python拓展,通常会提示安装pip。
pip 是一个现代的,通用的 Python 包管理工具。提供了对 Python 包的查找、下载、安装、卸载的功能。
安装pip
使用以下脚本:
wget https://bootstrap.pypa.io/get-pip.py
sudo python get-pip.py
pip -V #查看pip版本
另:如果出现VS code中出现Linter pylint is not installed
,点击install
后仍出现There is no Pip installer available in the selected environment.
提示框:
以Ubuntu18.04为例,自带Python 2.7.15+,在有python3前提下(若无python3需手动安装),还需要安装python3相关pip包,使用以下命令:
sudo apt install python3-pip
解决方案参考:
原文地址:https://www.cnblogs.com/iyanhang/p/11621109.html
时间: 2024-10-14 07:34:34