-
-
Notifications
You must be signed in to change notification settings - Fork 402
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Windows 7 pip install error #811
Comments
Your error message looks like it's missing a few characters from each line. You also have it rendering as python code, but it's just plaintext, so there's all sorts of distracting formatting going on. At a guess, from |
Just tested that function, returned D:\Temp\somerandomcharacters so if that is broken, its because of reasons outside our scope. Could you run you python interpreter with the following and post the result? import tempfile;print tempfile.mkdtemp() |
@tyrope I started python in my cmd and executed the following line import tempfile;print tempfile.mkdtemp() The results are: c:\users\mikeyr\appdata\local\temp\tmpdd1tgq Just an empty directory: http://i.imgur.com/4lSH2pk.png |
I'm not familiar at all with Anaconda, and at a glance I'm not sure what the point of using it is here. Try running it without Anaconda and see if that helps. @tyrope, can you check if |
I can confirm this bug on a normal windows python install. the failure looks identical. the relevant lines are: |
@embolalia My python install apparently didn't come with pip. Cannot reproduce. |
I can also confirm I am getting the same identical error as @tyrope and @quintopia and I am installing using a normal windows python 2.7 pip install. |
The me too's probably aren't helping, but have also reproduced here on a normal Windows 8 Python Install. I have the same string of random letters too, which may or may not be relevant. |
It's always |
Spitballing ideas here, could it be related to that old "random numbers in windows aren't actually random" thing? |
The lines referred to by @embolalia work properly, as does cloing the repo and running Something's up with the way this release was packaged. I downloaded the tarball from PyPi and found the offending string in willie-5.3.0\willie.egg-info\SOURCES.txt, line 5. I don't know much about eggs or how to build them, but I think creating a new one can fix this. |
Deleted the line joshood found, and it allowed willie to actually be installed. However I'm running into numerous errors when trying to run it, so there may be other issues with the installer package. |
The problem lies in the "Python34\Lib\distutils\utils.py" module. |
The issue is with the hacky solution to getting the run script installed in the right place with the right name. #622 recommended switching to a setuptools entry point, which is definitely cleaner, but I turned it down because it would be painful on platforms that have to manually bootstrap setuptools. Apparently it's going to be painful anyway, though, so I might change my mind on that. |
The old script is still hanging around, and should be cleaned up, but this will hopefully fix windows installations like #811.
This was fixed by 9375904. |
I have an error when I try to install it through pip, not sure hwy some of the lines are missing.
Using cmd prompt, win 7 64 bit, Python 2.7.8 anaconda 2.1 (64 bit)
The text was updated successfully, but these errors were encountered: