gp1313 / iep

Automatically exported from code.google.com/p/iep
0 stars 0 forks source link

IEP is not installable with pip #139

Closed GoogleCodeExporter closed 8 years ago

GoogleCodeExporter commented 8 years ago
$ sudo pip install iep
[sudo] password for fccoelho: 
Downloading/unpacking iep
  Downloading iep-3.1.1.linux64.tar.gz (17.3Mb): 17.3Mb downloaded
  Running setup.py egg_info for package iep
    Traceback (most recent call last):
      File "<string>", line 14, in <module>
    IOError: [Errno 2] No such file or directory: '/home/fccoelho/build/iep/setup.py'
    Complete output from command python setup.py egg_info:
    Traceback (most recent call last):

  File "<string>", line 14, in <module>

IOError: [Errno 2] No such file or directory: 
'/home/fccoelho/build/iep/setup.py'

Original issue reported on code.google.com by almar.klein@gmail.com on 21 Dec 2012 at 9:50

GoogleCodeExporter commented 8 years ago
The solution for now:
hg clone https://code.google.com/p/iep/ -u v3.1.1
sudo python3 setup.py install

Original comment by almar.klein@gmail.com on 21 Dec 2012 at 9:58

GoogleCodeExporter commented 8 years ago
"sudo python3 setup.py install"  seems to work on the zip file from pypi though.

Original comment by almar.klein@gmail.com on 21 Dec 2012 at 10:47

GoogleCodeExporter commented 8 years ago
Doh! The archive uploaded to pypi works just fine. However, pip tries to pull 
in the source code from IEPs download page, and downloads the archive that 
contains the binaries.

Original comment by almar.klein@gmail.com on 21 Dec 2012 at 10:52

GoogleCodeExporter commented 8 years ago
Mmm, the problem was that pip looks in http://pypi.python.org/simple/iep/, 
which also listed the download page from version 3.1 of iep.
I removed the 3.1 entry of IEP from pypi, and pip seems to work fine now...

Original comment by almar.klein@gmail.com on 22 Dec 2012 at 11:27