Y
Hacker News
new
|
ask
|
show
|
jobs
by
100k
5163 days ago
And then you have to deploy it to the server or someone else's computer and it sucks.
1 comments
lloeki
5163 days ago
pip freeze
works even without virtualenv. Expunge things you know don't matter, and send to third party/deploy, which then just has to run
pip install -r requirements.txt
.
link