Ross Middleton
Ross Middleton

Reputation: 237

IPython install from GitHub

I have opened an enhanced console on my C: derive and pulled IPython from GitHub.

The nice python developer at my work had to shoot off on holiday before the install completed and left one line of commands as an instruction. Unfortunately when i type them into the Enhanced Console I get an error. Command and error below:

Command: python setupegg.py develop

Error: "python: can't open file 'setupegg.py' : [Errno 2] No such file or directory

Thanks in advance

Upvotes: 0

Views: 433

Answers (1)

minrk
minrk

Reputation: 38608

This is generally the quickest way to install IPython from GitHub:

pip install -e git+https://github.com/ipython/ipython#egg=ipython

The same goes for pretty much any Python package on GitHub.

Upvotes: 3

Related Questions