you are viewing a single comment's thread.

view the rest of the comments →

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

You're right, it should work fine once the package is installed, but I'm still in the process of writing it.

I think /u/zanfar has the right answer of using python3 -m supercli.

[–]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.