💎一站式轻松地调用各大LLM模型接口,支持GPT4、智谱、星火、月之暗面及文生图 广告
[TOC] 一般 CentOS 系统默认自带 python(系统要用,比如 yum 工具就是 python 写的),但是经验看一般都不带 pip 工具,需要手动安装。 <br /> #### 1. 安装扩展源EPEL ~~~ # CentOS yum源 中默认没有 pip,需要安装 扩展源EPEL sudo yum -y install epel-release ~~~ #### 2. 安装 pip ~~~ sudo yum -y install python-pip ~~~ #### 3. 检查是否安装成功 ~~~ pip -V ~~~ #### 4. pip升级 ``` pip install --upgrade pip ```