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 was archived by the owner on Apr 19, 2023. It is now read-only.
The latest version of csvkit introduces breaking changes to the python API. When attempting to run clerk I got a traceback and cement.core.exc.FrameworkError: No module named py2. See here for the offending import statement. To get it to work, I installed an older version of csvkit by running pip install -I csvkit==0.9.1.
In addition, the suggested command to install from the GitHub repo did not work for me. I got an error message git@github.com:newsdev/nyt-clerk.git#egg=clerk should either be a path to a local project or a VCS url beginning with svn+, git+, hg+, or bzr+. I used pip install git+https://github.com/newsdev/nyt-clerk.git instead, which worked fine except for the above problem.
The latest version of csvkit introduces breaking changes to the python API. When attempting to run
clerkI got a traceback andcement.core.exc.FrameworkError: No module named py2. See here for the offending import statement. To get it to work, I installed an older version of csvkit by runningpip install -I csvkit==0.9.1.In addition, the suggested command to install from the GitHub repo did not work for me. I got an error message
git@github.com:newsdev/nyt-clerk.git#egg=clerk should either be a path to a local project or a VCS url beginning with svn+, git+, hg+, or bzr+. I usedpip install git+https://github.com/newsdev/nyt-clerk.gitinstead, which worked fine except for the above problem.