1.python3.7
2.Python 包安装和管理工具pip
3.代理/抓包工具Mitmproxy
4.传输和存储数据工具protobuf
1.python3.7——
(1)下载python(
官网指定平台下的python3.7.1
环境)
wget https://www.python.org/ftp/python/3.7.1/Python-3.7.1.tgz
(2)解压
tar -xvzf Python-3.7.1.tgz
(3)安装
cd Python-3.7.1
./configure --with-ssl --prefix=/usr/local/python3
出现下面的错误:
configure: WARNING: unrecognized options: --with-ssl checking build system type... x86_64-pc-linux-gnu checking host system type... x86_64-pc-linux-gnu checking for python3.7... no checking for python3... python3 checking for --enable-universalsdk... no checking for --with-universal-archs... no checking MACHDEP... checking for --without-gcc... no checking for --with-icc... no checking for gcc... no checking for cc... no checking for cl.exe... no configure: error: in `/usr/local/Python-3.7.1‘: configure: error: no acceptable C compiler found in $PATH
对策:
原文:https://www.cnblogs.com/qq2806933146xiaobai/p/14362876.html