a thoughtful web.
Good ideas and conversation. No ads, no tracking.   Login or Take a Tour!
comment by thundara
thundara  ·  3081 days ago  ·  link  ·    ·  parent  ·  post: Google open sources their deep learning library

Virtualenv is pretty simple! Instead of installing packages to a system-wide folder, it places them locally and tells python to search that folder instead of the system's one:

    $ virtualenv .

    $ source bin/activate

    $ pip install pkg1 pkg2 ...

    $ python run_program...

The underlying implementation has changed a bit over the years, but from a user's point of view, it's been extremely easy to work with.

Also spotted today