# Python-for-AI **Repository Path**: javywang/python-for-ai ## Basic Information - **Project Name**: Python-for-AI - **Description**: No description available - **Primary Language**: Python - **License**: Apache-2.0 - **Default Branch**: master - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 3 - **Forks**: 2 - **Created**: 2026-04-27 - **Last Updated**: 2026-06-04 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README # Python for AI > AI专业本科生实践课程 本课程面向大一大二AI专业本科生,通过Python编程实践,掌握人工智能开发的基础技能。 ## 📚 课程内容 - Python编程基础 (见[**python_course**](https://github.com/ntu-caokun/python_course)) - Python数据分析(NumPy/Pandas数据处理)(见[**python_course**](https://github.com/ntu-caokun/python_course)) - Python数据可视化(matplotlib) - 机器学习入门(scikit-learn) - 深度学习基础(PyTorch) - AI项目实战 ## 🚀 快速开始 ```bash # 0. 克隆仓库 git clone https://gitee.com/javywang/python-for-ai.git # 1. 创建虚拟环境(指定 Python 3.10) conda create -n python-for-ai python=3.10 -y # 2. 激活环境 conda activate python-for-ai # 3. 安装数据分析和可视化核心库 conda install numpy pandas matplotlib seaborn jupyter -y # 4. (可选)安装 scipy,部分科学计算会用到 conda install scipy -y # 5. (可选)设置国内镜像源加速下载(对学生友好) pip config set global.index-url https://pypi.tuna.tsinghua.edu.cn/simple ```