Replies: 1 comment 1 reply
-
Next, we want to check where our repo get installed.
Notice that before I'm using
Ok, it's a git repo, so it's "editable". But will the changes to that repo will be preserved? I made some changes and then run |
Beta Was this translation helpful? Give feedback.
1 reply
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
Firstly, let's create new poetry project:-
This will give us file named
pyproject.toml
in current directory. Now let's try to add a private git repo as dependencies.Ughh, what give ... Let's check the command's help:-
Aaah, ok. Need to use the
git+ssh
form.This also doesn't work:-
Oh, wait. Github url should use
git
as username. So:-Now it installing.
Beta Was this translation helpful? Give feedback.
All reactions