# Learn-Python3 **Repository Path**: addadd6/Learn-Python3 ## Basic Information - **Project Name**: Learn-Python3 - **Description**: Learn-Python3 - **Primary Language**: Python - **License**: Not specified - **Default Branch**: master - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 1 - **Created**: 2025-03-16 - **Last Updated**: 2025-03-16 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README # Learn-Python3 Learn-Python3 # create requirements.txt ``` pip freeze > requirements.txt ``` 安装时可一键安装: ``` pip install -r requirements.txt ``` # pip 镜像 https://blog.csdn.net/qq_43757282/article/details/107403028 1. 阿里云 http://mirrors.aliyun.com/pypi/simple/ 2. 豆瓣http://pypi.douban.com/simple/ 3. 清华大学 https://pypi.tuna.tsinghua.edu.cn/simple/ 4. 中国科学技术大学 http://pypi.mirrors.ustc.edu.cn/simple/ 5. 华中科技大学http://pypi.hustunique.com/ > 注意:新版ubuntu要求使用https源。 - Linux下,修改 ~/.pip/pip.conf (没有就创建一个文件夹及文件。文件夹要加“.”,表示是隐藏文件夹) 内容如下: ``` [global] index-url = https://pypi.tuna.tsinghua.edu.cn/simple [install] trusted-host = https://pypi.tuna.tsinghua.edu.cn ``` - windows下,直接在user目录中创建一个pip目录,如:C:\Users\xx\pip,然后新建文件pip.ini,即 %HOMEPATH%\pip\pip.ini,在pip.ini文件中输入以下内容(以豆瓣镜像为例): ``` [global] index-url = http://pypi.douban.com/simple [install] trusted-host = pypi.douban.com ``` # 编译器 [编译器相关配置](docs/editor.md) # 语法 [python3进阶语法](docs/python3进阶语法.md) # Flask [Flask工作原理](docs/Flask工作原理.md) [常见web框架](docs/常见web框架.md) # 微服务 [微服务介绍](docs/微服务介绍.md)