github訪問不了 本地host解決方案

2021-10-02 12:36:52 字數 1133 閱讀 2481

ping如下幾個備選ip,找到乙個能通的就行。

# 這幾個ip都對應github.com這個網域名稱

192.30

.253

.112

192.30

.253

.113

192.30

.253

.118

192.30

.253

.119

任選乙個能ping通的ip寫入hosts檔案

windows 系統hosts檔案,位於 c:\windows\system32\drivers\etc\hosts

注意:需要管理員許可權

127.0.0.1	localhost

127.0.1.1 sun-pc

# the following lines are desirable for ipv6 capable hosts

::1 ip6-localhost ip6-loopback

fe00::0 ip6-localnet

ff00::0 ip6-mcastprefix

ff02::1 ip6-allnodes

ff02::2 ip6-allrouters

# 在末尾追加

# github

192.30.253.112 github.com

# 使用vim 編輯

sudo vim /etc/hosts

127.0.0.1	localhost

127.0.1.1 wanglei-pc

# github

192.30.253.112 github.com

# the following lines are desirable for ipv6 capable hosts

::1 ip6-localhost ip6-loopback

fe00::0 ip6-localnet

ff00::0 ip6-mcastprefix

ff02::1 ip6-allnodes

ff02::2 ip6-allrouters

django 本地訪問不了靜態檔案的解決方法

這幾天沒寫部落格,感覺沒記錄就記不住了一樣,真是.我在這幾天遇到了乙個問題,我用的是pycharm 2017,3 版,我想用它來為我的django搭建乙個開發用的本地伺服器,用來除錯我的專案,配置執行沒有什麼大的問題 事後看過 但是就是只能成功返回網頁,不能順利傳送js css img等靜態資源,這...

github 提公升github訪問速度

此方式適用於各種作業系統,主要方式為修改host檔案,新增配置的方式 1.查詢網域名稱對應的ip位址,並修改hosts檔案 windows macos linux通用的方式 nslookup github.com nslookup github.global.ssl.fastly.net 注 嘗試過...

Github初學 本地專案上傳github

以下 操作是在windows系統下完成的,linux下情況不詳 第一步 建立git倉庫 cd到你的本地專案根目錄下,執行git命令 git init第二步 將專案的所有檔案新增到倉庫中 git add 如果想新增某個特定的檔案,只需把.換成特定的檔名即可 第三步 將add的檔案commit到倉庫 g...