CloudBotIRC / CloudBot

CloudBot - The simple, fast, expandable, open-source Python IRC Bot!
GNU General Public License v3.0
273 stars 252 forks source link

<module> from cloudbot.bot import CloudBot #241

Closed dannymichel closed 8 years ago

dannymichel commented 8 years ago
-bash-4.1$ /usr/local/bin/python3.4 -m cloudbot
Traceback (most recent call last):
  File "/usr/local/lib/python3.4/runpy.py", line 170, in _run_module_as_main
    "__main__", mod_spec)
  File "/usr/local/lib/python3.4/runpy.py", line 85, in _run_code
    exec(code, run_globals)
  File "/home/danny/CloudBot-master/cloudbot/__main__.py", line 19, in <module>
    from cloudbot.bot import CloudBot
  File "/home/danny/CloudBot-master/cloudbot/bot.py", line 8, in <module>
    from sqlalchemy import create_engine
ImportError: No module named 'sqlalchemy'
Red-M commented 8 years ago

Please report this issue to your local system administrator.

On 23 June 2016 at 19:23, Danny Michel notifications@github.com wrote:

-bash-4.1$ /usr/local/bin/python3.4 -m cloudbot Traceback (most recent call last): File "/usr/local/lib/python3.4/runpy.py", line 170, in _run_module_as_main "main", mod_spec) File "/usr/local/lib/python3.4/runpy.py", line 85, in _run_code exec(code, run_globals) File "/home/danny/CloudBot-master/cloudbot/main.py", line 19, in from cloudbot.bot import CloudBot File "/home/danny/CloudBot-master/cloudbot/bot.py", line 8, in from sqlalchemy import create_engine ImportError: No module named 'sqlalchemy'

— You are receiving this because you are subscribed to this thread. Reply to this email directly, view it on GitHub https://github.com/CloudBotIRC/CloudBot/issues/241, or mute the thread https://github.com/notifications/unsubscribe/ABZoEeDCrZ4Afq-lrCgvo1pf0XW7FqtOks5qOlCXgaJpZM4I8nKz .

edwardslabs commented 8 years ago

sqlalchemy is not installed which more than likely means you did not run pip3.4 install -r requirements.txt

daboross commented 8 years ago

Closing as this is purely an issue of not installing required dependencies.