Re: giving error during installation (ez_setup.py given error could not create ssl/tls secure channel)

2018-09-17 Thread dieter
Syed Shujaat writes: > can you please help regarding this problem. ez_setup.py given error could not > create ssl/tls secure channel Apparently, "ez_setup.py" tries to upgrade a transport communication channel with SSL (= "Secure Socket Layer") or TLS (= "Trans

giving error during installation (ez_setup.py given error could not create ssl/tls secure channel)

2018-09-17 Thread Syed Shujaat
Hello, can you please help regarding this problem. ez_setup.py given error could not create ssl/tls secure channel Regards Syed Shujaat -- https://mail.python.org/mailman/listinfo/python-list

Re: Invalid Syntax Installing pip - ez_setup.py

2014-12-01 Thread Billy Furlong
Success. Whats happening is that the second wget command is not recognizing the --no-check-certificate. So I went around the problem and installed it manually. wget https://pypi.python.org/packages/source/s/setuptools/setuptools-7.0.zip --no-check-certificate unzip setuptools-7.0.zip python2.7

Re: Invalid Syntax Installing pip - ez_setup.py

2014-12-01 Thread Billy Furlong
Hi Chris, Yep that got me closer. I found that using | sudo python2.7 was a bad command. So I changed over to | python2.7. [root@myserver tmp]# wget https://bootstrap.pypa.io/ez_setup.py --no-check-certificate -O - | python2.7 --2014-12-01 12:57:07-- https://bootstrap.pypa.io/ez_setup.py

Re: Invalid Syntax Installing pip - ez_setup.py

2014-12-01 Thread Chris Angelico
On Tue, Dec 2, 2014 at 3:58 AM, wrote: > Getting an error when I try to install ez_setup.py. I thought that this was > an issues with an incorrect version of python, so I upgraded to 2.7.5 > successfully. But unfortunately I get the same error. > > > File &quo

Invalid Syntax Installing pip - ez_setup.py

2014-12-01 Thread billyfurlong
Hi all, Getting an error when I try to install ez_setup.py. I thought that this was an issues with an incorrect version of python, so I upgraded to 2.7.5 successfully. But unfortunately I get the same error. [root@yyboxname tmp]# wget https://bootstrap.pypa.io/ez_setup.py --no-check

Re: Common issue but unable to find common solution (ez_setup.py on PC)

2014-05-07 Thread Jurko Gospodnetić
you need to fix your problem sooner, you can always do one of the following: 1. Not run ez_setup.py if setuptools is already installed and instead just run 'easy_install -U setuptools' to perform the upgrade. (I think that avoids the problem at hand, but I don't recall all t

Re: Common issue but unable to find common solution (ez_setup.py on PC)

2014-05-07 Thread Jason Mellone
On Wednesday, May 7, 2014 9:44:14 AM UTC-4, Jurko Gospodnetić wrote: > Hi. > > > > On 7.5.2014. 13:55, Jason Mellone wrote: > > > By way of google I realize I am having what appears to be > > > a pretty common issue install ez_setup.py on a PC (Windows XP, P

Re: Common issue but unable to find common solution (ez_setup.py on PC)

2014-05-07 Thread Jurko Gospodnetić
Hi. On 7.5.2014. 13:55, Jason Mellone wrote: By way of google I realize I am having what appears to be a pretty common issue install ez_setup.py on a PC (Windows XP, Python27). I receive an error message that looks like the following: Installing easy_install-2.7.exe.manifest script to C

Common issue but unable to find common solution (ez_setup.py on PC)

2014-05-07 Thread Jason Mellone
Hello, By way of google I realize I am having what appears to be a pretty common issue install ez_setup.py on a PC (Windows XP, Python27). I receive an error message that looks like the following: Installing easy_install-2.7.exe.manifest script to C:\Python27\Scripts Installed c:\python27

Difficulty with ez_setup.py

2014-01-07 Thread Rzed
I am trying to run ez_setup.py on a fresh installation of Python 2.7.6 in a Win XP environment, but I keep getting an error. Here's the traceback: C:\Python27\Lib>python ez_setup.py Extracting in c:\docume~1\dick\locals~1\temp\tmpkjidy0 Now working in c:\docume~1\dick\locals~1\temp\t

[Fwd: Re: ez_setup.py]

2007-02-26 Thread Tim Golden
audience from c.l.py. >>> >>> If there's no PYTHONPATH that means it's just down to >>> your system setup what goes on the path. Try (from >>> within the python interpreter): >>> >>> >>> import sys >>> for i in sys.path: >>> print i >>> >>> >>> >>> Do you see your home directory there? >>> >>> TJG >> This is the result of the code: >> /usr/people/emami/lib/python24.zip >> /usr/people/emami/lib/python2.4 >> /usr/people/emami/lib/python2.4/plat-linux2 >> /usr/people/emami/lib/python2.4/lib-tk >> /usr/people/emami/lib/python2.4/lib-dynload >> /usr/people/emami/lib/python2.4/site-packages > > (Sigh). Copying back to the list. > > So, are you running in /usr/people/emami when > you're call ez_setup? > > TJG > I have solved it. I have copied the "ez_setup.py" to my bin directory where "python" is installed and he hes done his job. -- http://mail.python.org/mailman/listinfo/python-list

Re: ez_setup.py

2007-02-26 Thread Paul Boddie
in fact. So if calendar.py is in the same directory as ez_setup.py, I would imagine that any attempt to import the calendar module will result in the this non-standard calendar.py being found and imported, rather than the standard library's calendar module. The most appropriate solution is to put

Re: ez_setup.py

2007-02-26 Thread Tim Golden
Nader Emami wrote: > Tim Golden wrote: >> Nader Emami wrote: >>> Tim Golden wrote: Nader Emami wrote: >>> How can do the second solution, (take off the home from Python >>> path)? >> >> Depends on your setup. Since you're on *nix, I can't >> test whether $HOME is auto

Re: ez_setup.py

2007-02-26 Thread Tim Golden
Nader Emami wrote: > Tim Golden wrote: >> Nader Emami wrote: >> > How can do the second solution, (take off the home from Python path)? Depends on your setup. Since you're on *nix, I can't test whether $HOME is automatically on sys.path (it isn't on Win32). Are you running *

Re: ez_setup.py

2007-02-26 Thread Tim Golden
Nader Emami wrote: >>> How can do the second solution, (take off the home from Python path)? >> >> Depends on your setup. Since you're on *nix, I can't >> test whether $HOME is automatically on sys.path (it >> isn't on Win32). Are you running *in* /usr/people/emami? >> If so, go somewhere else bef

Re: ez_setup.py

2007-02-26 Thread Tim Golden
Nader Emami wrote: > Tim Golden wrote: >> Nader Emami wrote: >>> L.S., >>> >>> I have installed locally Python-2.4.4 without any problem. Then I >>> would install the "ez_setup.py" to be able using of "easy_install" >>>

Re: ez_setup.py

2007-02-26 Thread Nader Emami
Tim Golden wrote: > Nader Emami wrote: >> L.S., >> >> I have installed locally Python-2.4.4 without any problem. Then I >> would install the "ez_setup.py" to be able using of "easy_install" >> tool, but I get the next error: >>

Re: ez_setup.py

2007-02-26 Thread Tim Golden
Nader Emami wrote: > L.S., > > I have installed locally Python-2.4.4 without any problem. Then I would > install the "ez_setup.py" to be able using of "easy_install" tool, but I > get the next error: > > %python ez_setup.py > Traceback (most recent c

ez_setup.py

2007-02-26 Thread Nader Emami
L.S., I have installed locally Python-2.4.4 without any problem. Then I would install the "ez_setup.py" to be able using of "easy_install" tool, but I get the next error: %python ez_setup.py Traceback (most recent call last): File "ez_setup.py", line