1. 程式人生 > >pycharm18.2.4 + Python3.7.1 安裝salt報錯python pip install salt: Command "python setup.py egg_info" failed with error code 10 及解決方法

pycharm18.2.4 + Python3.7.1 安裝salt報錯python pip install salt: Command "python setup.py egg_info" failed with error code 10 及解決方法

最近在使用Python3.7.1 + pycharm + salt編寫程式中需要用到salt模組,但是在pycharm中使用pip install salt 安裝時出現錯誤:

  1、提示需要 microsoft visual c++ 14.0

    解決方法:可以去官網http://landinghub.visualstudio.com/visual-cpp-build-tools下載該軟體,但是官網提示404無法下載

        推薦大家去CSDN下載:https://download.csdn.net/download/amoscn/10399046

  2、安裝完成後出現 安裝saltstack報錯 Command "python setup.py egg_info" failed with error code 10 

解決辦法如下

a.下載安裝包:salt-2018.3.3.tar.gz
b.解壓 salt-2018.3.3.tar.gz
c.下載以下庫檔案

  https://repo.saltstack.com/windows/dependencies/64/ssleay32.dll
  https://repo.saltstack.com/windows/dependencies/64/libsodium.dll
  https://repo.saltstack.com/windows/dependencies/64/libeay32.dll
d.放至python根目錄下:如C:\python3.7\python3.7
e.管理員方式開啟cmd命令:
  python setup.py install 安裝 安裝完成即可 
注意:

  如果使用的是pycharm 的venv虛擬機器 
  則在salt安裝包目錄下執行 (venv) F:\python\venv\salt-2018.3.3\python setup.py install 
(前提是以上三個檔案必須有,否則報錯)