# ipyweb **Repository Path**: remotin/ipyweb ## Basic Information - **Project Name**: ipyweb - **Description**: No description available - **Primary Language**: Unknown - **License**: MIT - **Default Branch**: master - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 0 - **Created**: 2025-09-28 - **Last Updated**: 2025-10-28 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README # 创建虚拟环境 ``` /usr/bin/python3 -m venv .pyenv python3 -m venv .pyenv ``` # 激活虚拟环境 ``` source ./.pyenv/bin/activate ``` # 退出虚拟环境 ``` deactivate ``` # 安装依赖 ``` pip install -r requirements.txt ```