徹底玩轉單例模式 單例中最重要的思想 >構造器私有! 惡漢式、懶漢式(DCL懶漢式!) 惡漢式 package single; //餓漢式單例(問題:因為一上來就把對象載入了,所以可能會導致浪費記憶體) public class Hungry { /* * 如果其中有大量的需要開闢的空間,如new b ...
在使用pip 安裝第三方模塊的時候,報錯:
WARNING: The repository located at mirrors.aliyun.com is not a trusted or secure host and is being ignored. If this repository is available via HTTPS we recommend you use HTTPS instead, otherwise you may silence this warning and allow it anyway with '-trusted-host mirrors.aliyun.com".
翻譯成中文大意為:
警告:存儲庫位於阿裡雲鏡像不是受信任或安全的主機,正在被忽略。如果此存儲庫可通過HTTPS訪問,我們建議您改用HTTPS,否則您可以忽視告警並使用"-trusted-host mirrors.aliyun.com"。
遇到這種情況可以使用 pip -v config list 命令先檢查下配置:
(venv) PS D:\pythonProject\MyTools> pip -v config list
For variant 'global', will try loading 'C:\ProgramData\pip\pip.ini'
For variant 'user', will try loading 'C:\Users\Administrator\pip\pip.ini'
For variant 'user', will try loading 'C:\Users\Administrator\AppData\Roaming\pip\pip.ini'
For variant 'site', will try loading 'D:\pythonProject\MyTools\venv\pip.ini'
從返回信息可以看到有四條信息,我們建議在最後一條信息的環境(虛擬環境)下編輯或者添加一個pip.ini文件。
添加的內容為:
[global]
index-url = https://mirrors.aliyun.com/pypi/simple/
[install]
trusted-host=mirrors.aliyun.com
然後保存為pip.ini文件,最後再 pip -v config list 確認下結果,我們可以看到結果為:
此刻再安裝第三方模塊就可以正常使用了。