/ / Installare PyMongo e inserire IDE cloud9 - python, mongodb, bottle, cloud9-ide

Installare PyMongo e inserire IDE cloud9 - python, mongodb, bottle, cloud9-ide

Come installare PyMongo e inserire IDE cloud9?

risposte:

1 per risposta № 1

Il metodo migliore per installare PyMongo e Bottle in Cloud9 è tramite Python-pip. Ottieni prima pip. Apri il tuo terminale C9 ed esegui i seguenti comandi:

sudo apt-get install python-pip

Dopo aver installato pip è possibile ottenere PyMongo e Bottle eseguendo i seguenti comandi:

sudo pip install pymongo

sudo pip install bottle

Un consiglio, mentre si specifica l'url localhost inserire 0.0.0.0 invece di localhost sulla macchina C9. Ad esempio nel tuo file server usa,

bottle.run(host="0.0.0.0", port=8080)