如何在cloud9 IDE中安装PyMongo和bottle?
答案 0 :(得分:1)
在Cloud9中安装PyMongo和Bottle的最佳方法是通过 Python-pip 。先得到点子。打开C9终端并运行以下命令:
sudo apt-get install python-pip
安装pip后,您可以通过运行以下命令获取PyMongo和Bottle:
sudo pip install pymongo
sudo pip install bottle
提示,同时指定localhost url在C9计算机上输入0.0.0.0而不是localhost。例如,在您的服务器文件中使用
bottle.run(host='0.0.0.0', port=8080)