Reputation: 3837
To install iPython on my local machine, I need to do:
$ pip uninstall ipython
$ pip install ipython[all]
How can I specify this [all] requirement in requirements.txt for heroku server?
Upvotes: 0
Views: 292
Reputation: 28405
You could install on your local machine, possibly in a python virtualenv and then use:
pip freeze
to generate an initial requirements.txt
Upvotes: 2