1. 程式人生 > >使用pyhon安裝git相關的包時--user問題

使用pyhon安裝git相關的包時--user問題

在用pyhon安裝JQData時,報錯 Could not install packages due to an EnvironmentError: [WinError 5] 拒絕訪問。: ‘d:\anaconda3\lib\site-packages\msgpack\_packer.cp36-win_amd64.pyd’ Consider using the --user option or check the permissions. 詢問網站的客服,非說我的git安裝的有問題,讓我重新裝了好幾遍,又讓換管理員賬號安裝等等,最後問題是這麼解決的,在命令中加上–user就行了。

pip install git+https://github.com/JoinQuant/jqdatasdk.git 改成 pip install --user git+https://github.com/JoinQuant/jqdatasdk.git