# Python-Code-Examples **Repository Path**: python_examples/python-code-examples ## Basic Information - **Project Name**: Python-Code-Examples - **Description**: No description available - **Primary Language**: Unknown - **License**: Not specified - **Default Branch**: main - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 0 - **Created**: 2024-08-14 - **Last Updated**: 2024-11-18 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README # Python Code Examples ## Description Python 内置模块的样例代码 ## Installation ### Pip ```bash # clone project git clone http://192.168.1.3/zhuyuanxiang/python-code-examples.git cd python-code-examples # [OPTIONAL] create conda environment conda create -n python-code-examples python=3.12 conda activate python-code-examples # install requirements pip install -r requirements.txt ``` ### Conda ```bash # clone project git clone http://192.168.1.3/zhuyuanxiang/python-code-examples.git cd python-code-examples # create conda environment and install dependencies conda env create -f environment.yaml -n python-code-examples # activate conda environment conda activate python-code-examples ``` ### Manul Install ```bash # clone project git clone http://192.168.1.3/zhuyuanxiang/python-code-examples.git cd python-code-examples # [OPTIONAL] create conda environment conda create -n python-code-examples python=3.12 conda activate python-code-examples conda install pre-commit conda install pytest pip install rootutils ```