Tommy Carstensen added the comment:
I have the same problem as described here. How can I install Python3.6 and pip
without sudo and without homebrew? I get the same error message after
installation:
pip is configured with locations that require TLS/SSL, however the ssl module
in Python is
Tommy Carstensen added the comment:
Thanks @ned.deily ! That did the trick for me! When installing openssl I just
had to do ./config --prefix=/my/home/dir prior to doing make and make install.
Then I just did two commands prior to installing python3.6:
export CFLAGS="-I/my/home/dir/in
Tommy Carstensen added the comment:
I can't user requests, urllib, pandas.read_html(), etc. because of this. I
don't have root access / sudo rights. I've tried downloading OpenSSL from
openssl.org and then installing with:
`./config --prefix=/my/home/dir ; make ; make install
New submission from Tommy Carstensen:
This is my first post on bugs.python.org. I hope I abide to the rules. It was
suggested to me on stackoverflow.com, that I request an enhancement to the
module fileinput here:
http://stackoverflow.com/questions/22510123/reading-individual-bytes-of-multiple
Tommy Carstensen added the comment:
I read the fileinput code and realized how heavily tied it is to line input.
Will reading individual bytes as suggested not be very memory intensive, if
each line is billions of characters?
def bytefileinput():
return (bytes((b,)) for line in
Tommy Carstensen added the comment:
I noticed 3.5 alpha1 is not released until February 1st. Is there any way I can
get my hands on this new functionality?
--
nosy: +Tommy.Carstensen
___
Python tracker
<http://bugs.python.org/issue13
Tommy Carstensen added the comment:
Yes, but 3.5 has not been pre-released yet.
--
___
Python tracker
<http://bugs.python.org/issue13742>
___
___
Python-bug