1. 程式人生 > 其它 >mysql5.7主從配置、啟動、關閉

mysql5.7主從配置、啟動、關閉

一、用pip安裝命令報錯

在pip安裝命令中出現以下報錯,這是因為預設的pip源是在國外的,連線錯誤或者丟包了,這時候就需要更換pip源了

二、pip源

國內的pip源有以下幾個:

目的:採用國內源,加速下載模組的速度

阿里雲(常用) http://mirrors.aliyun.com/pypi/simple/

中國科技大學 https://pypi.mirrors.ustc.edu.cn/simple/

豆瓣(常用) http://pypi.douban.com/simple/

清華大學 https://pypi.tuna.tsinghua.edu.cn/simple/

中國科學技術大學 http://pypi.mirrors.ustc.edu.cn/simple/

三、wins一次性使用

#使用格式
pip install [要安裝的] -i [pip源] --trusted-host [pip源https://之後,/simple/之前的內容]

#舉例:用阿里雲的pip源安裝django
pip install django -i http://mirrors.aliyun.com/pypi/simple/ --trusted-host mirrors.aliyun.com
pip install django -i https://pypi.mirrors.ustc.edu.cn/simple/ --trusted-host pypi.mirrors.ustc.edu.cn
pip install django 
-i http://pypi.douban.com/simple/ --trusted-host pypi.douban.com pip install django -i https://pypi.tuna.tsinghua.edu.cn/simple/ --trusted-host pypi.tuna.tsinghua.edu.cn pip install django -i http://pypi.mirrors.ustc.edu.cn/simple/ --trusted-host pypi.mirrors.ustc.edu.cn

四、wins永久使用

1. 開啟檔案管理器,在路徑位址列輸入%APPDATA%

2.此時會進入C:\Users\電腦使用者\AppData\Roaming資料夾中,新建一個資料夾,命名為pip

3.進入pip資料夾,新建一個文字文件,重新命名為pip.ini,右鍵 - 編輯(內容如下)-編輯完儲存

[global]
index-url = http://pypi.douban.com/simple
[install]
use-mirrors =true
mirrors =http://pypi.douban.com/simple/
trusted-host =pypi.douban.com

五、linux和mac版

1、在使用者根目錄下 ~ 下建立 .pip 隱藏資料夾,如果已經有了可以跳過
    -- mkdir ~/.pip
2、進入 .pip 隱藏資料夾並建立 pip.conf 配置檔案
    -- cd ~/.pip && touch pip.conf
3、啟動 Finder(訪達) 按 cmd+shift+g 來的進入,輸入 ~/.pip 回車進入
4、新增 pip.conf 配置檔案內容

使用者根目錄下新建pip.conf內的編輯內容

    [global]
    index-url = http://pypi.douban.com/simple
    [install]
    use-mirrors =true
    mirrors =http://pypi.douban.com/simple/
    trusted-host =pypi.douban.com    

六、以後再使用pip安裝,走的是國內源

因為這裡用的是豆瓣源,以後安裝走的就是豆瓣源