# Machine learning **Repository Path**: Silfra/machine-learning ## Basic Information - **Project Name**: Machine learning - **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-05-08 - **Last Updated**: 2025-05-18 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README 使用 conda 冻结虚拟环境: ```bash conda env export > environment.yml conda env create -f environment.yml ``` 然后删除 `environment.yml` 文件中开头的 `name` 和结尾的 `prefix` 字段,保证无路径问题的迁移虚拟环境到新设备。 使用 conda 从 yml 文件中创建虚拟环境: ```bash conda env create -f environment.yml --prefix ./.ml-venv conda activate ./.ml-venv ```