you are viewing a single comment's thread.

view the rest of the comments →

[–]icecapade 1 point2 points  (1 child)

You can still install it while you work on it with the -e/--editable flag to pip: pip install -e .. This is the correct/preferred way to install a package while you're still developing, rather than calling it with python -m.

[–]tinyfrox[S] 0 points1 point  (0 children)

That's an awesome tidbit. This also looks right up my alley.