如果使用樹莓派默認(rèn)的軟件源下載網(wǎng)站,有時會出現(xiàn)無法下載革半、更新軟件球散。(圖中的E:是下載出錯,404 Not Found是沒有找到地址添忘,failed to download是下載失敳赡拧)
這是因為默認(rèn)的軟件源是國外的若锁,國內(nèi)的網(wǎng)絡(luò)可能無法連接上搁骑,這個時候就需要將下載源換成國內(nèi)的下載源。
軟件下載源修改為國內(nèi)清華的
只需修改兩個文件就可以更改軟件下載源的又固。
運行sudo nano /etc/apt/sources.list? ? ? ? ? ? ? ? 先編輯這個文件
sudo空格nano空格/etc/apt/sources點list? ? ? ? ? ? ? ? 先編輯這個第一個文件
將原來文件內(nèi)容每一行的最前面沒#井號的都加上#井號,讓他這一橫行的語句在文件中不運行仲器。
然后在文件最下面輸入下面內(nèi)容:
deb http://mirrors.tuna.tsinghua.edu.cn/raspbian/raspbian/ stretch main contrib non-free rpi
deb-src http://mirrors.tuna.tsinghua.edu.cn/raspbian/raspbian/ stretch main contrib non-free rpi
deb空格http://mirrors.tuna.tsinghua.edu.cn/raspbian/raspbian/空格stretch空格main空格contrib空格non-free空格rpi
deb-src空格http://mirrors.tuna.tsinghua.edu.cn/raspbian/raspbian/空格stretch空格main空格contrib空格non-free空格rpi
編輯好后,按“ctrl”鍵+“x”鍵保存仰冠,再按“y”鍵確認(rèn)乏冀,最后按“enter”鍵確認(rèn)名稱并保存。
再運行sudo nano /etc/apt/sources.list.d/raspi.list????? ? ? ? ? ? ? 再編輯這個第二個文件
再運行sudo空格nano空格/etc/apt/sources.list.d/raspi.list????? ? ? ? ? ? ? 再編輯這個第二個文件
也是將原來文件內(nèi)容每一行的最前面沒#井號的都加上#井號,讓他這一橫行的語句在文件中不運行洋只。
然后也是在文件最下面輸入下面內(nèi)容:
deb http://mirror.tuna.tsinghua.edu.cn/raspberrypi/ stretch main ui
deb-src http://mirror.tuna.tsinghua.edu.cn/raspberrypi/ stretch main ui
deb空格http://mirror.tuna.tsinghua.edu.cn/raspberrypi/空格stretch空格main空格ui
deb-src空格http://mirror.tuna.tsinghua.edu.cn/raspberrypi/空格stretch空格main空格ui
編輯好后辆沦,按“ctrl”鍵+“x”鍵保存,再按“y”鍵確認(rèn)识虚,最后按“enter”鍵確認(rèn)名稱并保存肢扯。
運行sudo apt-get update就可以更新軟件列表看看有沒有報錯。
pip下載庫失敗担锤,更改成國內(nèi)的
pip默認(rèn)也是國外的下載地址蔚晨,可能無法下載,需要更改成國內(nèi)的下載地址肛循。
操作是修改 ~/.pip/pip.conf這個文件铭腕。如果沒有這個文件,需要
cd ~????????????????進(jìn)入這個目錄
cd空格~? ????????????????進(jìn)入這個目錄
sudo mkdir .pip? ? ? ? ? ? ? ? 新建? .pip? 這個目錄
sudo空格mkdir空格點pip? ? ? ? ? ? ? ? 新建? ?點pip? 這個目錄
nano ~/.pip/pip.conf? ? ? ? ? ? ? ? 打開編輯? pip.conf? 這個文件
nano空格~/點pip/pip點conf? ? ? ? ? ? ? ? 打開編輯? ?pip點conf? 這個文件
輸入下面的內(nèi)容:
[global]
index-url = https://pypi.tuna.tsinghua.edu.cn/simple
[install]
trusted-host = https://pypi.tuna.tsinghua.edu.cn
[global]
index-url = https://pypi.tuna.tsinghua.edu.cn/simple
[install]
trusted-host = https://pypi.tuna.tsinghua.edu.cn
然后按“ctrl”鍵+“x”鍵保存多糠,再按“y”鍵確認(rèn)累舷,最后按“enter”鍵確認(rèn)名稱并保存。