Live data from Hacker News

Viewing profile — mtai84

mtai84

HN member
Joined
Wed, Aug 17, 2011, 5:22 PM UTC
HN karma
3
Public activity
5 items

About mtai84

No profile information was provided.

Recent public activity

  1. comment
    Comment #2896443

    Yeah I think transitive should be fine provided each python package has a good "setup.py" As for obsolete, you'll just have to manually uninstall the ones that were deprecated and …

  2. comment
    Comment #2896437

    - We deployed tarballs to production machines which unpacked to a single directory that included a virtualenv that had both all our code and all the modules we relied on, and anyth…

  3. comment
    Comment #2896289

    > Not sure if pip lets you run configuration scripts during various stages of install and un-install? As far as I can tell, you can run config scripts during installation. A good e…

  4. comment
    Comment #2896149

    You can explicitly specify which version of a package you want to install. For example, if you wanted to install an older version of Tornado, pip install tornado==1.1 OR if you kno…

  5. comment
    Comment #2896138

    Hi, I'm the author of the article. We've definitely looked at virtualenv but for right now we're just developing a single app. Thus far, we've been able to get away with munging th…