Hacker News new | past | comments | ask | show | jobs | submit login

It extends to deployment. Off top of my head, the script that you have to write to trivially deploy with virtualenv is something like:

    virtualenv --no-site-packages -p$PYTHON $workdir
    "$workdir/bin/activate"
    (cd $my-package-dir && python setup.py)
    "$workdir/bin/deactivate"
    virtualenv --relocatable "$workdir"
    fpm -s dir -t deb -n "$package" -p "$package.deb" -d <system dependencies> ...
And you have a deb that you can just scp anywhere and it'll just work.



Join us for AI Startup School this June 16-17 in San Francisco!

Guidelines | FAQ | Lists | API | Security | Legal | Apply to YC | Contact

Search: