dowjones123
dowjones123

Reputation: 3837

Installing iPython on Heroku

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

Answers (1)

Steve Barnes
Steve Barnes

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

Related Questions