You are viewing a single comment's thread from:
RE: Controversial Thought: Python > Javascript
I haven't been able to figure out dependency management in Python. I know there's pip, but every time I try and use it, I end up failing for some reason.
I haven't been able to figure out dependency management in Python. I know there's pip, but every time I try and use it, I end up failing for some reason.
Try using
pipenv. If you are familiar withnpm, it is a slightly dumber version of the same sort of thing, except for Python. It works by leveraging the package managerpipto guarantee a reproduciblevirtualenvbased on a list of dependencies, which can be reconstructed by anyone who installspipenv. Since I have discovered it, it has become indispensable in my Python projects.Thanks, I'll definitely try that. Love npm, let us see how this is.