yoavram / markx

Markdown editor for scientific writing. Batteries included.
Other
319 stars 41 forks source link

server.py error in commit 53a0757d5c5f7c29142b237e2a14e934f8c0b11f #23

Closed lsaravia closed 11 years ago

lsaravia commented 11 years ago

I did a pull to actualize markx and then run the server:

leonardo@lypMini:~/markx$ python server.py

Traceback (most recent call last):
 File "server.py", line 11, in <module> 
 import requests
 ImportError: No module named requests
yoavram commented 11 years ago

Hi You need to install python-requests which is used to send http requests to Docverter and converted markdown to other formats. Either run pip install requests or go to http://python-requests.org. Let me know if this solves the problem. Also check the deployed version (still in development) at http://markx.herokuapp.com which allows using markx without installation.

lsaravia commented 11 years ago

Yes, problem solved!