rmusser01 / pefile

Automatically exported from code.google.com/p/pefile
Other
0 stars 1 forks source link

Latest version not available to install through pip #48

Open GoogleCodeExporter opened 9 years ago

GoogleCodeExporter commented 9 years ago
What steps will reproduce the problem?
1. pip install --upgrade -v -v -v pefile

Installed version (1.2.10-114) is most up-to-date (past versions: 1.2.10-114, 
1.2.10-63, 1.2.10-60, 1.2.10-56, 1.2.9.1, 1.2.9)

What is the expected output? What do you see instead?
I expected the newest version of pefile to be available through pip: 
pefile-1.2.10-139

What version of the product are you using? On what operating system?
Linux, Python 2.7

Please provide any additional information below.

Original issue reported on code.google.com by jamesgst...@gmail.com on 25 Jun 2014 at 2:52

GoogleCodeExporter commented 9 years ago
It looks like the issue is with the resources being hosted externally 

running pip install -v -v -v --upgrade pefile will output a number of warnings.

<snip>
Skipping http://pefile.googlecode.com/files/pefile-1.2.10-139.tar.gz (from 
https://pypi.python.org/simple/pefile/) because it is externally hosted.
</snip>

You can bypass this by using the arguments "--allow-external pefile 
--allow-unverified pefile"  

Example: sudo pip install --allow-external pefile --allow-unverified pefile 
pefile

On a side note since you are installing from an externally hosted & unverified 
source, things could go horribly wrong, but you'll have the latest package. 

Original comment by idiom...@gmail.com on 20 Jan 2015 at 8:38