# command **Repository Path**: GG99huihui/web_auto_test ## Basic Information - **Project Name**: command - **Description**: all command - **Primary Language**: Python - **License**: Not specified - **Default Branch**: master - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 0 - **Created**: 2023-10-16 - **Last Updated**: 2024-12-31 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README pip install numpy==1.21.0 更改python默认镜像源 pip config set global.index-url https://pypi.tuna.tsinghua.edu.cn/simple/ pip config set install.trusted-host pypi.tuna.tsinghua.edu.cn 命令: pip install -i 国内镜像地址 numpy 国内常用源镜像地址: 清华:https://pypi.tuna.tsinghua.edu.cn/simple 阿里云:http://mirrors.aliyun.com/pypi/simple/ 中国科技大学 https://pypi.mirrors.ustc.edu.cn/simple/ 华中理工大学:http://pypi.hustunique.com/ 山东理工大学:http://pypi.sdutlinux.org/ 豆瓣:http://pypi.douban.com/simple/ 例如:pip install -i https://mirrors.aliyun.com/pypi/simple/ numpy pip show selenium webdriver地址: https://liushilive.github.io/github_selenium_drivers/md/IE.html Git 全局设置: git config --global user.name "gongjinhui" git config --global user.email "759625445@qq.com" 创建 git 仓库: mkdir web_auto_test cd web_auto_test git init touch README.md git add README.md git commit -m "first commit" git remote add origin https://gitee.com/GG99huihui/web_auto_test.git git push -u origin "master" 已有仓库? cd existing_git_repo git remote add origin https://gitee.com/GG99huihui/web_auto_test.git git push -u origin "master"