Hacker News new | ask | show | jobs
by alexkehayias 1986 days ago
Thanks for the heads up about graphQL—I think I'll avoid for now. It will be for a new project so not a big deal.

I just had a quick look at PyTorch... you're totally right this is miles ahead of what I remember.

I forgot to ask about package management. Do you use pip, conda, poetry?

1 comments

Personally I love poetry, if for no reason other than making publishing a breeze. If I can’t use it for some reason, I like managing virtual envs with pyenv (not to be confused with pipenv. You’re better off for having missed the controversies around that)

Oh btw virtualenv is gone now; you make envs using python -m venv myEnvName

Nice, I’ll check out poetry.

That’s great that some of the virtualenv functionality made its way into the standard library!