# py-seaborn **Repository Path**: chendawei/py-seaborn ## Basic Information - **Project Name**: py-seaborn - **Description**: No description available - **Primary Language**: Unknown - **License**: Not specified - **Default Branch**: master - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 0 - **Created**: 2025-01-03 - **Last Updated**: 2025-01-06 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README python.exe -m pip install --upgrade pip pip install seaborn pip install matplotlib pip freeze > requirements.txt pip install -r requirements.txt python -m venv # python -m venv myenv source /bin/activate deactivate # 删除旧的虚拟环境(如果需要) rm -rf venv # 创建新的虚拟环境 python -m venv venv # 激活虚拟环境 source venv/bin/activate # Linux/MacOS # 或者 venv\Scripts\activate # Windows # 安装最新的 Matplotlib 和其他依赖 pip install matplotlib seaborn