RUST 在linux 系統的安裝

babyyellow發表於2018-11-16

伺服器, 如何安裝rust 系統呢? 


從網站上下載的rust-init.sh  如果配置代理的話會需要對curl 配置代理。 而且不見得有用。 


修改 rust-init.sh  


downloader() {  函式 部分下面的 curl  的程式碼 增加  代理伺服器。 


    if [ "$1" = --check ]

    then need_cmd "$_dld"

    elif [ "$_dld" = curl ]

    then curl -x x.x.x.x:port -sSfL "$1" -o "$2"

    elif [ "$_dld" = wget ]



然後再在 .bash_profile   中增加 一個  alias


alias  curl='curl -x x.x.x.x:port -sSfL '


配置上代理伺服器, 然後就可以安裝了。 



安裝完成後,   在 ~/.cargo/config 中 增加代理伺服器:


vi  congfig

 [http]

proxy="x.x.x.x:port"

[https]

proxy="x.x.x.x:port"



在 .gitconfig 檔案中增加同樣內容。 




然後 就可以愉快的玩了。 



來自 “ ITPUB部落格 ” ,連結:http://blog.itpub.net/133735/viewspace-2220362/,如需轉載,請註明出處,否則將追究法律責任。

相關文章