# PyQt6-Fluent-Widgets 安装&卸载

## 目录
- [一 安装 PyQt6-Fluent-Widgets](#一-安装-pyqt6-fluent-widgets)
- [二 卸载 PyQt6-Fluent-Widgets](#二-卸载-pyqt6-fluent-widgets)
- [三 确认 PyQt6-Fluent-Widgets 已经彻底卸载](#三-确认-pyqt6-fluent-widgets-已经彻底卸载)

### 一 安装 PyQt6-Fluent-Widgets

##### 使用 pip 安装 PyQt6-Fluent-Widgets：

{{< tabs "install" >}}">
{{< tab "完整功能版本" >}}

```bash
pip install "PyQt6-Fluent-Widgets[full]" -i https://pypi.org/simple/
```

{{< /tab >}}
{{< tab "精简版本" >}}

```bash
pip install PyQt6-Fluent-Widgets -i https://pypi.org/simple/
```

{{< /tab >}}
{{< /tabs >}}


### 二 卸载 PyQt6-Fluent-Widgets
使用 pip 卸载 PyQt6-Fluent-Widgets：

```bash
pip uninstall PyQt6-Fluent-Widgets
```

### 三 确认 PyQt6-Fluent-Widgets 已经彻底卸载
使用 pip 列出已安装的包，确认 PyQt6-Fluent-Widgets 已经不在列表中：

```bash
pip list
```

或者：

```bash
pip show PyQt6-Fluent-Widgets
```
如果 PyQt6-Fluent-Widgets 已经卸载成功，`pip show PyQt6-Fluent-Widgets` 将显示 "Package(s) not found: PyQt6-Fluent-Widgets"。

