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 Sep 17, 2021. It is now read-only.
Installing via pip I found that I had to manually track down and install these dependencies:
python--dateutils
pyyaml
bs4
This is on MacOS Sierra with homebrew, pip 9.0.1, python 2.7.13
$ circlecli --help
Traceback (most recent call last):
File "/usr/local/bin/circlecli", line 80, in <module>
from circlecli import CircleAPI, circle_status, validate_circle_yml
File "/usr/local/lib/python2.7/site-packages/circlecli/__init__.py", line 1, in <module>
from .circleapi import CircleAPI
File "/usr/local/lib/python2.7/site-packages/circlecli/circleapi.py", line 6, in <module>
from dateutil import parser as dp, tz
ImportError: No module named dateutil
$ circlecli --help
Traceback (most recent call last):
File "/usr/local/bin/circlecli", line 80, in <module>
from circlecli import CircleAPI, circle_status, validate_circle_yml
File "/usr/local/lib/python2.7/site-packages/circlecli/__init__.py", line 2, in <module>
from .circleutils import circle_status, validate_circle_yml
File "/usr/local/lib/python2.7/site-packages/circlecli/circleutils.py", line 5, in <module>
import yaml
ImportError: No module named yaml
$ circlecli --help
Traceback (most recent call last):
File "/usr/local/bin/circlecli", line 80, in <module>
from circlecli import CircleAPI, circle_status, validate_circle_yml
File "/usr/local/lib/python2.7/site-packages/circlecli/__init__.py", line 2, in <module>
from .circleutils import circle_status, validate_circle_yml
File "/usr/local/lib/python2.7/site-packages/circlecli/circleutils.py", line 6, in <module>
from bs4 import BeautifulSoup
ImportError: No module named bs4
The text was updated successfully, but these errors were encountered:
Sign up for freeto subscribe to this conversation on GitHub.
Already have an account?
Sign in.
Installing via pip I found that I had to manually track down and install these dependencies:
This is on MacOS Sierra with homebrew, pip 9.0.1, python 2.7.13
The text was updated successfully, but these errors were encountered: