python安裝simplejson

獵手家園發表於2018-10-16

import simplejson

報錯:ImportError: No module named simplejson

simplejson是ansible一個很重要的依賴,經測試在python 2.4.3及以上版本都可以用python setup.py install 安裝成功。

安裝方法一:

yum install python-simplejson -y

 

安裝方法二:

wget https://files.pythonhosted.org/packages/e3/24/c35fb1c1c315fc0fffe61ea00d3f88e85469004713dab488dee4f35b0aff/simplejson-3.16.0.tar.gz
tar vxzf simplejson-3.16.0.tar.gz
cd simplejson-3.16.0
python setup.py install

 

安裝方法三:

pip install simplejson

 

安裝方法四:

easy_install simplejson

 

相關文章