環境 ruby換源

2021-06-27 19:26:11 字數 1215 閱讀 5593

warning: preg_match(): compilation failed: unrecognized character after (?< at offset 72 in /home/web/blog/wp-includes/class-wp-embed.php on line 154

在使用gem安裝軟體時提示連線主機失敗

[root@365dw ~]# gem install open4 exception_notification

error: could not find a valid gem 'open4' (>= 0), here is why:

unable to download data from - errno::etimedout: connection timed out - connect(2) (latest_specs.4.8.gz)

網上有使用**的方式,但是個人嘗試過不太理想。最好的方式是更換gem源,目前國內最好的就是**的源。

更換方式,首先檢視gem源

[root@365dw ~]# gem sources

*** current sources ***

新增**源

[root@365dw ~]# gem sources -a

added to sources

刪除ruby官方gem源

[root@365dw ~]# gem sources -r

removed from sources

再使用gem安裝

[root@365dw ~]# gem install open4 exception_notification

fetching: open4-1.3.4.gem (100%)

successfully installed open4-1.3.4

installing ri documentation for open4-1.3.4

fetching: exception_notification-4.0.1.gem (100%)

successfully installed exception_notification-4.0.1

installing ri documentation for exception_notification-4.0.1

2 gems installed

可以看到速度飛快,再次感謝**對網際網路的貢獻。

Ubuntu 系統換源 pip 換源

1 複製原檔案備份 sudo cp etc apt sources.list etc apt sources.list.bak 2 編輯源列表檔案 sudo vim etc apt sources.list 3 將原來的列表刪除,新增如下內容 deb vivid main restricted un...

conda install 換源 conda換源

windows下 1.conda源更換為清華源anaconda 是乙個用於科學計算的 python 發行版,支援 linux,mac,windows,包含了眾多流行的科學計算 資料分析的 python 包。清華大學開源軟體映象站 windows 使用者無法直接建立名為 condarc 的檔案,可先執...

python換源 python3 換源

1.原因 pip是很強大的模組安裝工具,但是由於國外官方pypi經常被牆,導致不可用。所以我們最好是更換pip源,這樣就能解決被牆導致的裝不上庫的問題。2.可用源 網上有很多可用的源 豆瓣 清華 清華大學的pip源,它是官網pypi的映象,每隔5分鐘同步一次,推薦使用。3.使用 3.1 臨時使用 可...