-
Notifications
You must be signed in to change notification settings - Fork 19
Does not work out of the box, if at all #5
Comments
I am sorry that you had trouble installing my package. There had been some issues when installing from source as mentioned in #3 . Did you try installing through As for the import issue. The Let me know if you have any issues then. |
Python3? So what would the command be, One thing that drives me nuts with Anyways, I went with that, and this was the result:
So, no dice. |
I noticed this:
Dang... |
Hey @bradenbest . You don't need to manually install the requirements for the package Do you have $ python3 --version
Python 3.4.2 If you are getting something like the above, you just have to do a Is the above working for you? |
That worked. Thanks a lot! I'll leave the decision of whether to close this to you, but before you close it, consider this: the issue may be able to be gotten around with The fix could be as simple as updating the readme with a solid section about troubleshooting broken dependencies. |
Glad I could be of some help! Thanks a lot for your input. I appreciate it! I updated the |
@bradenbest does the updated |
@Kickball @prodicus But this issue is called "Does not work out-of-the-box", so I tested it by cloning the latest version of this repo, and attempting to run
Changing |
I don't believe this is how python is meant to function. When did something that was supposed to be simple and easy for rapid prototyping turn into this over-complicated setup.py egg nonsense, where even if you have a dependency properly installed, it still breaks because there's apparently no python equivalent to
-I/path/to/h/file -L/path/to/library-binary
? Couple this with the fact that there are both python 2 and 3 in active development with divided, separate communities, and you get a bunch of crap. This is why I stopped using Python. Sure, it's easy to program in, but it fails epically in the portability department. I have never had this much trouble with C.Rant aside, this repo seems to be broken for the above reasons. Not to mention, upon inspecting urllib itself, there doesn't even seem to be a "request" object/module inside urllib, nor does there appear to be a urllib.request module of any fashion other than
/usr/lib/python2.7/dist-packages/urllib3/request.py
. Is that the package? Shouldn't the import line thus be "import urllib3.request"? What's going on here? How did you even manage to get this to function on your system? Cause I can't. The only way I can import urllib.request of any fashion is to go directly into urllib3's directory and type "import urllib3.request". That won't work anywhere else, and regular urllib doesn't have a request submodule, according to python. And symlinking the directory doesn't work, either.This is so broken.
The text was updated successfully, but these errors were encountered: