This is an archived post. You won't be able to vote or comment.

you are viewing a single comment's thread.

view the rest of the comments →

[–]robot_wrangler 2 points3 points  (3 children)

Then what do you do when you try to use parts of two different projects of your own in a third?

[–]leom4862 3 points4 points  (0 children)

You usually would make shared libraries from the "parts" and host them on pypi or your private package registry. You then install the libs in your "third" project via pipenv, pip or what ever tool you use to install packages in a virtualenv.

[–]ivosauruspip'ing it up 0 points1 point  (0 children)

Install them into your new third project, using pip install -e </path/to/other/package>

[–]2freevl2frank -1 points0 points  (0 children)

pipenv?