ImportError: No module named tornado.ioloop 记录过程
安装 pycurl pip install pycurl
报错 'curl-config' not found ,需编译 curl https://gist.github.com/fideloper/f72997d2e2c9fbe66459
sudo apt-get build-dep curl
wget http://curl.haxx.se/download/curl-7.52.1.tar.bz2
tar -xvjf curl-7.52.1.tar.bz2
cd curl-7.52.1
./configure
make
sudo make install
sudo ldconfig
安装tornado python -m pip install tornado
https://gist.github.com/fideloper?page=2
https://gist.github.com/fideloper/f72997d2e2c9fbe66459
转载于:https://www.cnblogs.com/yisuo/p/6784018.html