学习日记5

11.25 开始学习

  1. 如何使用管理员权限运行cmd
  • 在命令提示符中输入 where cmd 可查找文件所在位置
  • 找到cmd文件,右键管理员身份运行即可。

    2. 用第三方镜像源加快pip安装速度

  •  豆瓣:http://pypi.douban.com/simple/ 
      清华:https://pypi.tuna.tsinghua.edu.cn/simple/
      阿里云:http://mirrors.aliyun.com/pypi/simple/

         例如:pip install -i https://pypi.tuna.tsinghua.edu.cn/simple gevent

         或 pip install gevent -i https://pypi.tuna.tsinghua.edu.cn/simple/


猜你喜欢

转载自blog.csdn.net/dershine/article/details/80521658