You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on Aug 27, 2021. It is now read-only.
I have just installed the inotool. when i run "ino --help" i get:
Traceback (most recent call last):
File "/usr/local/bin/ino", line 3, in
from ino.runner import main
File "/usr/local/lib/python2.7/dist-packages/ino/runner.py", line 23, in
import ino.commands
File "/usr/local/lib/python2.7/dist-packages/ino/commands/init.py", line 5, in
from ino.commands.build import Build
File "/usr/local/lib/python2.7/dist-packages/ino/commands/build.py", line 16, in
from ino.environment import Version
File "/usr/local/lib/python2.7/dist-packages/ino/environment.py", line 19, in
from glob2 import glob
ImportError: No module named glob2
any help ?
I'm using Ubuntu 14.04
The text was updated successfully, but these errors were encountered:
The Ubuntu package glob2 is different than the required glob2 (a Python library). To install it, you can install python-pip and then pip to install it:
You just need to run pip install -r requirements.txt in case you have built this from source. If you install it through pip you shouldn't have this problem.
Sign up for freeto subscribe to this conversation on GitHub.
Already have an account?
Sign in.
I have just installed the inotool. when i run "ino --help" i get:
Traceback (most recent call last):
File "/usr/local/bin/ino", line 3, in
from ino.runner import main
File "/usr/local/lib/python2.7/dist-packages/ino/runner.py", line 23, in
import ino.commands
File "/usr/local/lib/python2.7/dist-packages/ino/commands/init.py", line 5, in
from ino.commands.build import Build
File "/usr/local/lib/python2.7/dist-packages/ino/commands/build.py", line 16, in
from ino.environment import Version
File "/usr/local/lib/python2.7/dist-packages/ino/environment.py", line 19, in
from glob2 import glob
ImportError: No module named glob2
any help ?
I'm using Ubuntu 14.04
The text was updated successfully, but these errors were encountered: