镜像下载.域名解析.时间同步请点击阿里云开源镜像站 树莓派系统在2022年1月28日迎来了更新,更新了64位的系统,同时也有lite系统供我们使用.32位系统很多软件都用不了,特别是宝塔面板.下面是安装最新版本系统的步骤. 1.下载相关镜像和烧录软件并启动树莓派 登录我们的树莓派官网下载系统镜像 https://www.raspberrypi.com/software/operating-systems/ 由于我不需要GUI界面,平时也就是ssh登录上就行,所以现在下载raspberry pi…
Ubuntu 更新国内镜像源失败 首先打开系统原来的/etc/apt/sources.list 查看,原来的仓库地址是 https 还是 http 如果是http那么说明本机的 CA 证书有问题,运行命令sudo apt-get install apt-transport-https ca-certificates 更新,这样就可以使用国内的 htpps 镜像源 如果是http 那么也可以选择使用 http 的国内镜像源 运行 sudo apt-get update 来更新…
mac 更新brew镜像源 cd "$(brew --repo)/Library/Taps/homebrew/homebrew-core" git remote set-url origin git://mirrors.ustc.edu.cn/homebrew-core.git echo 'export HOMEBREW_BOTTLE_DOMAIN=https://mirrors.ustc.edu.cn/homebrew-bottles' >> ~/.bash_profil…
硬件:Raspberry Pi 4B系统:Manjaro-ARM-xfce-rpi4-19.08网址:https://manjaro.org/ Issue系统启动后,中文字符显示为小方格乱码 解决:安装中文字体 sudo pacman -S wqy-microhei 预览 更新镜像源 计划更新为国内镜像源,失败,因为没有可用的国内镜像源. sudo pacman-mirrors -i -c China -m rank 只可以在 Australia, Denmark, Germany, Switz…
更换ubuntu的镜像源 /etc/apt/sources.list cp  /etc/apt/sources.list  /etc/apt/sources.list.bak 备份这个文件 vim /etc/apt/sources.list Esc 进入命令模式 :%s/us.archive.ubuntu.com/mirrors.aliyun.com/g 将所有地址换到aliyun地址 :wq 保存退出 apt-get update;更新. apt-get upgrade Ubuntu安装LAM…
1. 手动更改 备份镜像源 cd /etc/apt cp sources.list sources.list.bak 修改镜像源 sudo vim sources.list # 复制粘贴下面镜像源,保存退出 deb http://mirrors.aliyun.com/ubuntu/ xenial main deb-src http://mirrors.aliyun.com/ubuntu/ xenial main deb http://mirrors.aliyun.com/ubuntu/ xeni…
本文转载自:https://blog.csdn.net/yucicheung/article/details/79095742 问题描述 基于国内网速的问题,我们直接pip安装包通常速度非常慢,而且经常会出现装到一半失败了的问题,既然这样,我们就要充分利用国内镜像的力量,节省时间,明显提高pip安装的效率.以下是我的操作分享,一共分为永久置换和暂时置换两种方法. 国内镜像源列表 豆瓣(douban) http://pypi.douban.com/simple/ (推荐) 清华大学 https:/…
今天在安装Python模块matplotlib的时候,一直安装不成功,老是提示“socket.timeout: The read operation timed out”或者“Read timed out.” 因为国内的网络访问国外延迟很高,所以安装模块很慢就不说了,还一定安装不上. [root@localhosts ~]# pip3 install --user matplotlib WARNING: Running pip install with root privileges is ge…
win: https://git-for-windows.github.io/ 或 https://git-scm.com/downloads   官网!   源码安装git Git 的工作需要调用 curl,zlib,openssl,expat,libiconv 等库的代码,所以需要先安装这些依赖工具.在有 yum 的系统上(比如 Fedora)可以用下面的命令安装: $ yum install curl-devel expat-devel gettext-devel   openssl-de…
今天给树莓派换源,爆出N个这错误: W: GPG error: http://mirrors.neusoft.edu.cn/raspbian/raspbian wheezy InRelease: The following signatures couldn't be verified because the public key is not available: NO_PUBKEY 9165938D90FDDD2E 经过多番查找资料,解决了问题,记录下解决过程. 介绍: GPG是啥: 这玩意…