-
I checked out the branch via github and tried running it locally. I did pip install domdiv, but if I try to use the dominion_dividers command, it says it doesn't know it. |
Beta Was this translation helpful? Give feedback.
Answered by
sumpfork
Jan 2, 2023
Replies: 2 comments 2 replies
-
Did you install it? |
Beta Was this translation helpful? Give feedback.
0 replies
-
So technically, there are two different things here:
|
Beta Was this translation helpful? Give feedback.
2 replies
Answer selected by
sumpfork
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
So technically, there are two different things here:
pip install domdiv
without checking out anything from github because I publish thedomdiv
package to the official Python PyPi index. If your python and pip set up correctly, your shell should find thedominion_dividers
command after you do that.python setup.py develop
or apip install -e .
(both of which install the package in a way that points to the checked out source so you can see changes at you edit the code) are the right thing.