原文:https://blog.csdn.net/p__csdn/article/details/72675840 https://tinpont.com/2017/fix-yum-download-mariadb-slow/--------CentOS下解决yum下载MariaDB 10.1过慢的问题 我用的CentOS 7 系统,其他Linux 发行版也可以参考.主要说一下如何使用 国内 镜像加速安装. 进入 MariaDB 的下载页面,可以看到: 右边可以选择 需要安装的平台.需要的安装包…
pip install requests或pip --trusted-host pypi.python.org install requests报错: 原因:网上解释为网速太慢,或被防火墙 解决方法:使用国内镜像加速 pip install requests -i http://pypi.douban.com/simple/ --trusted-host pypi.douban.com 安装无报错,再查看库是否安装成功…
前提条件 1.系统.内核 CentOS7 要求64位系统.内核版本3.10以上 CentOS6 要求版本在6.5以上,系统64位.内核版本2.6.32-431以上 查看内核版本号 uname -r #查看内核版本 cat /etc/os-release #查看系统信息 2.连网 3.卸载旧版本 $ sudo yum remove docker \ docker-client \ docker-client-latest \ docker-common \ docker-latest \ dock…
安装yarn https://yarnpkg.com/lang/zh-hans/docs/install/ 使用国内镜像加速npm和yarn 1. npm config set registry=https://registry.npm.taobao.org 2. yarn config set registry https://registry.npm.taobao.org 3. 下载cnpm:npm install -g cnpm --registry=https://registry.np…
清华大学提供开源镜像站:https://mirrors.tuna.tsinghua.edu.cn/help/pypi/ pypi 镜像每 5 分钟同步一次. pip install 包的名字 == 版本 -i 国内镜像地址(https://pypi.tuna.tsinghua.edu.cn/simple) eg: pip install xxx==1.1.1 -i https://pypi.tuna.tsinghua.edu.cn/simple pip install keras==2.1.3…
一.前言 先回顾下上一节创建docker-machine的过程,默认情况下docker toolbox中的docker-machine使用virtual box创建虚拟机,KI首次启动时创建虚拟机的过程,大致相当于下面这条命令: docker-machine create --driver virtualbox default 输出如下: Running pre-create checks... Creating machine... (default) Copying /Users/yjmyz…
Composer的安装以及使用国内镜像 Composer 学习网址 Composer官网 https://getcomposer.org/ Composer中文网 http://www.phpcomposer.com/ Composer资源网 https://packagist.org/ 镜像原理 一般情况下,安装包的数据(主要是 zip 文件)一般从github.com上下载的,安装包的元数据是从 packagist.org 上下载的.然而,由于众所周知的原因,国外的网站连接速度很慢,并且随时…
https://blog.csdn.net/liujingclan/article/details/50176597 https://blog.csdn.net/rytyy/article/details/78088682 在开发时,发现使用pip安装东西经常会超时,所以我就想到了使用国内镜像. 这里推荐使用豆瓣的源 建个文件 ~/.pip/pip.conf, 内容如下 [global] index-url = http://pypi.douban.com/simple/ [install] u…
Windows系统下,一般情况下使用pip在DOS界面安装python第三方库时,经常会遇到超时的问题,导致第三方库无法顺利安装,此时就需要国内镜像源的帮助了. 使用方法如下: 例如:pip install -i https://pypi.tuna.tsinghua.edu.cn/simple pyspider,这样就会从清华这边的镜像去安装pyspider库. 国内源: 清华:https://pypi.tuna.tsinghua.edu.cn/simple 阿里云:http://mirrors…
前言 我们在学习 Python 的时候需要不同的 Python 版本,关系到电脑环境变量配置换来换去很是麻烦,所以这个时候我们需要一个虚拟的 Python 环境变量,我之前也装过 virtualenv.virtualenvwrapper.Venv 换来换去麻烦命令一大堆,记不住,最后选择 Anaconda,用一个代替全部,只要记住 conda 命令和 pip 命令就好了,不仅省事还方便.conda 命令可以看这个文章https://ahtelekb.gitee.io/posts/3ca71393…