# explorer **Repository Path**: echo_lg/explorer ## Basic Information - **Project Name**: explorer - **Description**: No description available - **Primary Language**: Python - **License**: AGPL-3.0 - **Default Branch**: master - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 0 - **Created**: 2021-12-17 - **Last Updated**: 2021-12-21 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README # explorer #### 介绍 此软件用于当前目录下的所有文件展示, 对于文本文件提供修改及保存功能。 此软件使用 PySide6 进行桌面端应用开发, 使用 poetry 进行依赖管理。使用python-magic 判断文件类型。 #### 安装教程 1. 克隆本仓库 ```shell git clone https://gitee.com/echo_lg/explorer.git ``` 2. 进入该仓库创建虚拟环境 ```shell cd explorer python -m venv venv # 此处我使用的是python自带的venv进行创建, 也可使用poetry shell 进行创建或其他创建方式 ``` 3. 进入虚拟环境 ```shell cd ./venv/Scripts/ ./Activate.ps1 # 此处根据不同命令行选中不同启动脚本 powershell: Activate.ps1; cmd: activate.bat ``` 4. 安装依赖 ```shell cd .. cd .. pip install poetry poetry install ``` 5. 以开发模式引入本包 ```shell python setup.py develop ``` 6. 运行该软件 ```shell python -m explorer ``` #### 使用说明 * 工具命令 ```shell python setup.py build_qt # 构建QT资源信息 python setup.py freeze # 打包项目 ``` #### 参与贡献 1. Fork 本仓库 2. 新建 Feat_xxx 分支 3. 提交代码 4. 新建 Pull Request