Thanks.
I updated the path and was able to launch python.exe for v3.8. I got rid of the
other errors but now facing an error with 'pandas' although it is installed ok
and the path correctly updated.
C:\Users\mchak>pythonPython 3.8.6 (tags/v3.8.6:db45529, Sep 23 2020, 15:52:53)
[MSC v.1927 64 b
Two observations.
Python.exe is not on your PATH. But that does not matter as you can use the py
command instead
And nymph may not be available for python 3.9 yet. Check on pypi to see if
there is a build for 3.9.
Maybe use 3.8 for the time being.
Barry
> On 24 Nov 2020, at 11:18, Mayukh Chak
Thanks - I am able to launch 'py' from the command prompt and it gives me the
python versions installed in my machine from python.org website.
However, when I am trying to execute a python program from command prompt, I am
getting the error below. I had reinstalled python packages (numpy, pandas
Barry Scott wrote:
If you have python from python.org installed you should be able to list all the
version you have installed
with the command:
py -0
When was that '-0' feature added?
I have Python 3.6 from Python.org and here a
'py.exe -0' gives:
Requested Python version (0) not install
Hi,
I have solved the issue by updating the Environment variables, now I am able to
launch 'py' from the command prompt. However, I can't launch 'python' from
command prompt. I am also encountering an issue when I try to execute the
'python' command from command prompt.
I had reinstalled the py
Hi Terry,
1. The command py doesn't work. It gives me the error below :
C:\Users\mchak>pyFatal Python error: init_sys_streams: can't initialize sys
standard streamsPython runtime state: core initializedAttributeError: module
'io' has no attribute 'open'
Current thread 0x8290 (most recent cal
1. The command 'py' doesn't work. It gives me the error below :
C:\Users\mchak>pyFatal Python error: init_sys_streams: can't initialize sys
standard streamsPython runtime state: core initializedAttributeError: module
'io' has no attribute 'open'
Current thread 0x8290 (most recent call first)
On 11/23/2020 9:10 AM, Mayukh Chakraborty via Python-list wrote:
Hi,
I had uninstalled and installed Python in Windows 10 but I am getting the error
below. Can you please help ?
C:\Users\mchak>python
Fatal Python error: init_sys_streams: can't initialize sys standard streams
Python runtime stat
> On 23 Nov 2020, at 14:10, Mayukh Chakraborty via Python-list
> wrote:
>
> Hi,
> I had uninstalled and installed Python in Windows 10 but I am getting the
> error below. Can you please help ?
> C:\Users\mchak>pythonFatal Python error: init_sys_streams: can't initialize
> sys standard strea
On 2020-04-02 19:09, J Conrado wrote:
Hi,
I have the version of python installed:
Python 3.7.6 and Python 3.8.1
If I type:
python
Python 3.7.6 (default, Jan 8 2020, 19:59:22)
[GCC 7.3.0] :: Anaconda, Inc. on linux
Type "help", "copyright", "credits" or "license" for more information.
>>> impo
Am 02.04.2020 um 20:09 schrieb J Conrado:
> Hi,
>
> I have the version of python installed:
> Python 3.7.6 and Python 3.8.1
> If I type:
> python
> Python 3.7.6 (default, Jan 8 2020, 19:59:22)
> [GCC 7.3.0] :: Anaconda, Inc. on linux
> Type "help", "copyright", "credits" or "license" for more inf
Thank you.
Maisarah Binti Mohd Yusak
Certified CPRE-FL & CTFL
Software Tester, IT Team.
AVL Infotech (Malaysia) Sdn. Bhd.
L2-I-3, Enterprise - 4 , Technology Park Malaysia,
Bukit Jalil, Kuala Lumpur, Malaysia -57000
Mobile: +6016 507 3051
Mail: mailto:maisa...@avlinfotech.net
Li
On 1/16/2017 12:32 AM, Girish Khasnis wrote:
Hi,
I am unable to install Python on my system. After installing Python I get
the below error when I try to open Python.
[image: Inline image 1]
Copy and paste the error message. This is text only list.
--
Terry Jan Reedy
--
https://mail.pytho
GBANE FETIGUE writes:
> ...
> I am running a python script to run some CURL commands, and return the
> response which is the applicationId and the versionId. I was able to do it.
> Now the versionId value supposed to be used on the second CURL as a value of
> the applications key which is an ar
On Fri, Aug 5, 2016 at 5:36 AM, Terry Reedy wrote:
> An example of the latter is when one writes code in Python to execute
> 'other' code. (IDLE is one example. It both executes user statements and
> evals user expressions.) One needs "except BaseException:" to isolate the
> interpreter from e
On 8/4/2016 12:19 PM, MRAB wrote:
In those rare occasions when you do write a bare except,
A bare "except:" is never needed and in my opinion, and that of others,
one should never write one (except possibly for experimentation). Be
explicit and write "except BaseException:" or "except Except
On Fri, Aug 5, 2016 at 2:09 AM, Igor Korot wrote:
>> [1] There are exceptions to this rule, for experts. But if you need to ask
>> what they are, you're not ready to know
>
> But even the experts will never write such a code - you never know what
> happens
> in a month. Server might throw some ne
On 2016-08-04 17:09, Igor Korot wrote:
Steven,
On Thu, Aug 4, 2016 at 11:56 AM, Steven D'Aprano
wrote:
On Fri, 5 Aug 2016 01:31 am, GBANE FETIGUE wrote:
try:
parsed_response = json.loads(response)
deployid = parsed_response[u'id']
print "Your deployid is: " + deployid
except:
prin
On 2016-08-04 16:31, GBANE FETIGUE wrote:
Hi,
I am running a python script to run some CURL commands, and return the response
which is the applicationId and the versionId. I was able to do it. Now the
versionId value supposed to be used on the second CURL as a value of the
applications key whi
Steven,
On Thu, Aug 4, 2016 at 11:56 AM, Steven D'Aprano
wrote:
> On Fri, 5 Aug 2016 01:31 am, GBANE FETIGUE wrote:
>
>> try:
>> parsed_response = json.loads(response)
>> deployid = parsed_response[u'id']
>> print "Your deployid is: " + deployid
>> except:
>> print 'Seems the named id
On Fri, 5 Aug 2016 01:31 am, GBANE FETIGUE wrote:
> try:
> parsed_response = json.loads(response)
> deployid = parsed_response[u'id']
> print "Your deployid is: " + deployid
> except:
> print 'Seems the named id already exists!'
I'm not going to try to debug your code blindfolded wit
On Fri, Aug 5, 2016 at 1:31 AM, GBANE FETIGUE wrote:
> try:
> parsed_response = json.loads(response)
> print "Your applicationId is: " + parsed_response[u'applicationId']
> version_id = parsed_response[u'versionId']
> print "Your versionId is: " + version_id
> except:
> print '
On 11/3/2015 8:07 AM, Ruud van Rooijen wrote:
my code:
from tkinter import *
window = Tk()
label = Label(window, text="miniproject A1")
label.pack()
window.mainloop()
given error:
C:\Users\Ruud\Python35\Scripts\python.exe
Based on the below, python.exe should be in
C:\Users\Ruud\AppData\Lo
On 7/11/2015 11:15 AM, Ernest Bonat, Ph.D. wrote:
Hi All,
I’m doing a CSV data analysis in Python using Eclipse IDE/PyDev. I have
organized my project using the standard MVC architecture. In Eclipse IDE
everything is working properly. When I run my main.py file it at Command
Prompt I got an err
On 29 May 2013 00:44, "Dennis Lee Bieber" wrote:
>
> On Tue, 28 May 2013 17:15:51 +1000, Chris Angelico
> declaimed the following in gmane.comp.python.general:
>
>
> > Can we internationalize English instead of localizing Python?
> >
> > Not-entirely-joking-ly yours,
> >
> All that is req
On 28 May 2013 09:22, "Chris Angelico" wrote:
>
> On Tue, May 28, 2013 at 6:10 PM, Fábio Santos
wrote:
> > Just to clarify, I am suggesting to have the unchanged messages in
> > tracebacks, but having some methods in the exception to get the
exception
> > and message localised. Just like repr() a
28.05.13 11:17, Chris Angelico написав(ла):
On Tue, May 28, 2013 at 6:10 PM, Fábio Santos wrote:
Just to clarify, I am suggesting to have the unchanged messages in
tracebacks, but having some methods in the exception to get the exception
and message localised. Just like repr() and str() are dir
On Tue, 28 May 2013 17:15:51 +1000, Chris Angelico wrote:
> Can we internationalize English instead of localizing Python?
We have. English is the primary international language for programmers.
(For which I am profoundly grateful.)
Japanese is also a pretty important language, but mostly in Jap
On Tue, May 28, 2013 at 6:10 PM, Fábio Santos wrote:
> Just to clarify, I am suggesting to have the unchanged messages in
> tracebacks, but having some methods in the exception to get the exception
> and message localised. Just like repr() and str() are directed at different
> audiences (the progr
On 28 May 2013 08:19, "Chris Angelico" wrote:
>
> On Tue, May 28, 2013 at 4:57 PM, Fábio Santos
wrote:
> >
> > On 28 May 2013 05:17, "Vito De Tullio" wrote:
> >> I really hope really far... have you never tried to google a localized
> >> error
> >> message? :\
> >
> > Never. I don't even try.
>
On Tue, May 28, 2013 at 4:57 PM, Fábio Santos wrote:
>
> On 28 May 2013 05:17, "Vito De Tullio" wrote:
>> I really hope really far... have you never tried to google a localized
>> error
>> message? :\
>
> Never. I don't even try.
Same happens when someone pastes an error onto a mailing list like
On 28 May 2013 05:17, "Vito De Tullio" wrote:
>
> Fábio Santos wrote:
>
> >> > > Speaking of PEPs and exceptions. When do we get localized
exceptions?
> >> >
> >> > What do you mean by "localized exceptions"?
> >> >
> >> > Please, tell me it's *NOT* a proposal to send the exception message
in
> >>
Fábio Santos wrote:
>> > > Speaking of PEPs and exceptions. When do we get localized exceptions?
>> >
>> > What do you mean by "localized exceptions"?
>> >
>> > Please, tell me it's *NOT* a proposal to send the exception message in
>> > the
>> > locale language!
>> It is. I think I read it mention
On 27 May 2013 19:36, "Fábio Santos" wrote:
>
>
> On 27 May 2013 19:23, "Vito De Tullio" wrote:
> >
> > Fábio Santos wrote:
> >
> > >> This should make life easier for us
> > >
http://docs.python.org/3/whatsnew/3.3.html#pep-3151-reworking-the-os-and-io-exception-hierarchy
> > >
> > > Speaking of
On 27 May 2013 19:23, "Vito De Tullio" wrote:
>
> Fábio Santos wrote:
>
> >> This should make life easier for us
> >
http://docs.python.org/3/whatsnew/3.3.html#pep-3151-reworking-the-os-and-io-exception-hierarchy
> >
> > Speaking of PEPs and exceptions. When do we get localized exceptions?
>
> Wha
Fábio Santos wrote:
>> This should make life easier for us
> http://docs.python.org/3/whatsnew/3.3.html#pep-3151-reworking-the-os-and-io-exception-hierarchy
>
> Speaking of PEPs and exceptions. When do we get localized exceptions?
What do you mean by "localized exceptions"?
Please, tell me it's
On 5/27/2013 12:54 PM, Carlos Nepomuceno wrote:
I think PEP 3151 is a step ahead! That's almost exactly what I was looking for.
Why did it take so long to have that implemented?
Since this PEP involved changing existing features, rather than adding
som
On 27/05/2013 17:54, Carlos Nepomuceno wrote:
I think PEP 3151 is a step ahead! That's almost exactly what I was looking for.
Why did it take so long to have that implemented?
Lack of volunteers.
--
If you're using GoogleCrap™ please read this
http:/
Thanks so much guys!
I'm not planning to prepare for every possible situation, but I certainly am
responsible to handle most common errors. So it's really important to know what
a function/method returns when called.
Exception handling may take lots of code, but I'm used to it. It's much better
On Mon, May 27, 2013 at 2:11 PM, Steven D'Aprano
wrote:
> On Mon, 27 May 2013 13:46:50 +0100, Fábio Santos wrote:
>
>> Speaking of PEPs and exceptions. When do we get localized exceptions?
>
>
> We're waiting for you to volunteer. When can you start?
I'd love to work on that but my C is too shabb
On Mon, 27 May 2013 13:46:50 +0100, Fábio Santos wrote:
> Speaking of PEPs and exceptions. When do we get localized exceptions?
We're waiting for you to volunteer. When can you start?
--
Steven
--
http://mail.python.org/mailman/listinfo/python-list
On 27 May 2013 12:41, "Mark Lawrence" wrote:
> This should make life easier for us
http://docs.python.org/3/whatsnew/3.3.html#pep-3151-reworking-the-os-and-io-exception-hierarchy
Speaking of PEPs and exceptions. When do we get localized exceptions?
--
http://mail.python.org/mailman/listinfo/pyth
On 27/05/2013 07:11, Cameron Simpson wrote:
BTW, I recommend importing "errno" and using symbolic names. It makes things
much more readable, and accomodates the situation where the symbols map to different
numbers on different platforms. And have a catch-all. For example:
Cheers,
This shou
On Mon, May 27, 2013 at 4:11 PM, Cameron Simpson wrote:
> On 27May2013 04:49, Carlos Nepomuceno wrote:
> | That's bad! I'd like to check all the IOError codes that may be
> | raised by a function/method but the information isn't there.
>
> No, you really don't.
Heh. I concur. Opening a file can
On 27May2013 04:49, Carlos Nepomuceno wrote:
| > From: steve+comp.lang.pyt...@pearwood.info
| > On Mon, 27 May 2013 02:13:54 +0300, Carlos Nepomuceno wrote:
| >> Where can I find all error codes and messages that Python throws (actual
| >> codes and messages from exceptions raised by stdlib)?
| >
On 27May2013 00:53, Steven D'Aprano
wrote:
| On Mon, 27 May 2013 02:13:54 +0300, Carlos Nepomuceno wrote:
| > Where can I find all error codes and messages that Python throws (actual
| > codes and messages from exceptions raised by stdlib)?
|
| There is no list. It is subject to change from vers
> From: steve+comp.lang.pyt...@pearwood.info
> Subject: Re: Python error codes and messages location
> Date: Mon, 27 May 2013 00:53:41 +
> To: python-list@python.org
>
> On Mon, 27 May 2013 02:13:54 +0300, Carlos Nepomuceno wrote:
>
On Mon, 27 May 2013 02:13:54 +0300, Carlos Nepomuceno wrote:
> Where can I find all error codes and messages that Python throws (actual
> codes and messages from exceptions raised by stdlib)?
There is no list. It is subject to change from version to version,
including point releases.
Many funct
Jürgen A. Erhard wrote:
> Peter's right, but instead of a print before the line, put a
> try/except around it, like
>
>try:
> set1 = set(list1)
>except TypeError:
> print list1
> raise
>
> This way, only the *actual* error triggers any output. With a general
> print b
On Mon, Jul 30, 2012 at 12:36 AM, wrote:
> If this kind of problems happen, --rare but in my 6 yrs Python experience
> happened sometimes--then I take a new window, rewrite or copy the earlier
> code module by module, give a new method name--believe it or not--- works.
If that solves your prob
On Sunday, July 29, 2012 2:57:18 PM UTC+5:30, (unknown) wrote:
> Dear Group,
>
>
>
> I was trying to convert the list to a set, with the following code:
>
>
>
> set1=set(list1)
>
>
>
> the code was running fine, but all on a sudden started to give the following
> error,
>
>
>
> set1=se
On 7/29/2012 5:30 AM subhabangal...@gmail.com said...
On Sunday, July 29, 2012 2:57:18 PM UTC+5:30, (unknown) wrote:
Dear Group,
I was trying to convert the list to a set, with the following code:
set1=set(list1)
Thanks for the answer. But my list does not contain another list that is the
issu
On Sunday, July 29, 2012 7:53:59 PM UTC+5:30, Roy Smith wrote:
> In article <81818a9c-60d3-48da-9345-0c0dfd5b2...@googlegroups.com>,
>
> subhabangal...@gmail.com wrote:
>
>
>
> > set1=set(list1)
>
> >
>
> > the code was running fine, but all on a sudden started to give the
> > following
>
On Sun, Jul 29, 2012 at 01:08:57PM +0200, Peter Otten wrote:
> subhabangal...@gmail.com wrote:
>
> > Dear Group,
> >
> > I was trying to convert the list to a set, with the following code:
> >
> > set1=set(list1)
> >
> > the code was running fine, but all on a sudden started to give the
> > fol
In article <81818a9c-60d3-48da-9345-0c0dfd5b2...@googlegroups.com>,
subhabangal...@gmail.com wrote:
> set1=set(list1)
>
> the code was running fine, but all on a sudden started to give the following
> error,
>
> set1=set(list1)
> TypeError: unhashable type: 'list'
First, make sure you underst
On Sun, 29 Jul 2012 05:30:15 -0700, subhabangalore wrote:
> Dear Peter,
> Thanks for the answer. But my list does not contain another list that is
> the issue. Intriguing.
That is not what the error message says. You said that this line of code:
set1=set(list1)
gives this error:
TypeE
On 29/07/2012 13:30, subhabangal...@gmail.com wrote:
On Sunday, July 29, 2012 2:57:18 PM UTC+5:30, (unknown) wrote:
Dear Group,
I was trying to convert the list to a set, with the following code:
set1=set(list1)
Dear Peter,
Thanks for the answer. But my list does not contain another list tha
Hi,
Have you tried printing the list which is passed onto the set. The items in
the list passed should be hashable and possibly there are objects which are
not hashable.
On Sun, Jul 29, 2012 at 2:30 PM, wrote:
> On Sunday, July 29, 2012 2:57:18 PM UTC+5:30, (unknown) wrote:
> > Dear Group,
> >
On 07/29/2012 02:30 PM, subhabangal...@gmail.com wrote:
> Thanks for the answer. But my list does not contain another list that is the
> issue. Intriguing. Thinking what to do.
What does your list contain? Can you reproduce the issue in a few
self-contained lines of code that you can show us, th
On Sunday, July 29, 2012 2:57:18 PM UTC+5:30, (unknown) wrote:
> Dear Group,
>
>
>
> I was trying to convert the list to a set, with the following code:
>
>
>
> set1=set(list1)
>
>
>
Dear Peter,
Thanks for the answer. But my list does not contain another list that is the
issue. Intriguing
subhabangal...@gmail.com wrote:
> Dear Group,
>
> I was trying to convert the list to a set, with the following code:
>
> set1=set(list1)
>
> the code was running fine, but all on a sudden started to give the
> following error,
>
> set1=set(list1)
> TypeError: unhashable type: 'list'
>
> plea
On Jul 13, 5:19 pm, John Gordon wrote:
> In <0730c5fb-3b65-45ce-9cc5-69d639f48...@g2g2000vbl.googlegroups.com>
> Adeoluwa Odein writes:
>
> > if you define the function in the execute() method, it works (as seen
> > on the page). But this is a stored procedure already residing on the
> > DB. A
On Jul 13, 5:19 pm, John Gordon wrote:
> In <0730c5fb-3b65-45ce-9cc5-69d639f48...@g2g2000vbl.googlegroups.com>
> Adeoluwa Odein writes:
>
> > if you define the function in the execute() method, it works (as seen
> > on the page). But this is a stored procedure already residing on the
> > DB. A
In <0730c5fb-3b65-45ce-9cc5-69d639f48...@g2g2000vbl.googlegroups.com> Adeoluwa
Odein writes:
> if you define the function in the execute() method, it works (as seen
> on the page). But this is a stored procedure already residing on the
> DB. A function/procedure outside of a package, actually
On 7/13/2011 4:33 PM, Adeoluwa Odein wrote:
The same error. The sample were found on the following site --I copied
exactly what is written there:
1. http://www.jython.org/archive/21/docs/zxjdbc.html
The jython-users mailing list might be a better place to ask your
question. Most people here a
On Jul 13, 5:02 pm, John Gordon wrote:
> In <86b9e6f2-e18e-41b9-92a2-86ea8d7b4...@f35g2000vbr.googlegroups.com>
> Adeoluwa Odein writes:
>
> > The same error. The sample were found on the following site --I copied
> > exactly what is written there:
> > 1.http://www.jython.org/archive/21/docs/zxj
In <86b9e6f2-e18e-41b9-92a2-86ea8d7b4...@f35g2000vbr.googlegroups.com> Adeoluwa
Odein writes:
> The same error. The sample were found on the following site --I copied
> exactly what is written there:
> 1. http://www.jython.org/archive/21/docs/zxjdbc.html
Ah, I see. You're supposed to call c.fe
On Jul 13, 4:09 pm, John Gordon wrote:
> > It's taking an OUT parameter.. I'm just following the examples as
> > documented by zxJDBC. How can I fix it?
>
> I suspect the example you're looking at was for a procedure which has no
> arguments, so in that case it would make sense to pass an empty p
> It's taking an OUT parameter.. I'm just following the examples as
> documented by zxJDBC. How can I fix it?
I suspect the example you're looking at was for a procedure which has no
arguments, so in that case it would make sense to pass an empty parameter
list.
I haven't worked with OUT paramet
On Jul 13, 2:26 pm, John Gordon wrote:
> In
> Adeoluwa Odein writes:
>
> > The actual jython/python call is:
> > p =3D [None]
> > c.callproc('c2_pkg.RS22', p);
> > I used a placeholder initially; now that you have the SQL code, there
> > it is. It essentially invokes the stored procedure, and
On Jul 13, 2:26 pm, John Gordon wrote:
> In
> Adeoluwa Odein writes:
>
> > The actual jython/python call is:
It's taking an OUT parameter.. I'm just following the examples as
documented by zxJDBC. How can I fix it?
> > p =3D [None]
> > c.callproc('c2_pkg.RS22', p);
> > I used a placeholder
In Adeoluwa
Odein writes:
> The actual jython/python call is:
> p =3D [None]
> c.callproc('c2_pkg.RS22', p);
> I used a placeholder initially; now that you have the SQL code, there
> it is. It essentially invokes the stored procedure, and it should
> return the OUT variable p, with some valu
The actual jython/python call is:
p = [None]
c.callproc('c2_pkg.RS22', p);
I used a placeholder initially; now that you have the SQL code, there
it is. It essentially invokes the stored procedure, and it should
return the OUT variable p, with some value. It doesn't have to be a
cursor fetch; ev
In <9e937261-d05d-477a-90d2-a690e85e1...@h17g2000yqn.googlegroups.com> Adeoluwa
Odein writes:
> Thanks, your assistance will be greatly appreciated on the right way
> forward. See the Stored Procedure Below -very simple:
I don't see a procedure named "pkg1_returns", which is the prodecure
call
Thanks, your assistance will be greatly appreciated on the right way
forward. See the Stored Procedure Below -very simple:
create or replace package c2_pkg
as
procedure openc;
procedure closec;
procedure RS22(v out varchar);
end;
/
create or replace package body c2_pkg
as
In <01efb6ac-deaa-4bdb-8b2d-b603bddde...@n5g2000yqh.googlegroups.com> Adeoluwa
Odein writes:
> Hello
> I am using the zxJDBC package with jython (similar to python), and I
> am having "python error PLS-00306: wrong number or types of arguments"
> error when using the "callproc()" method to execu
En Wed, 08 Jul 2009 06:35:54 -0300, Dave Angel escribió:
Gabriel Genellina wrote:
Jul 2009 09:55:13 -0300, Dave Angel escribió:
Gabriel Genellina wrote:
En Mon, 06 Jul 2009 19:56:40 -0300, matt0177
escribió:
When I try to run the command as outlined in
the book "simple_markup2.py < test
I'm running XP SP3. The program now works great from either of the
directories, as long as include 'python' before it. As far as looking at the
error with stack trace, I really don't know enough yet to know how to do
that. I'm running the file from command line, because I'm not sure how to
run it r
Gabriel Genellina wrote:
En Tue,
07 Jul 2009 09:55:13 -0300, Dave Angel escribió:
Gabriel Genellina wrote:
En Mon, 06 Jul 2009 19:56:40 -0300, matt0177
escribió:
When I try to run the command as outlined in
the book "simple_markup2.py < test_input.txt > test_output.html i
get the
follo
En Tue, 07 Jul 2009 09:55:13 -0300, Dave Angel escribió:
Gabriel Genellina wrote:
En Mon, 06 Jul 2009 19:56:40 -0300, matt0177
escribió:
When I try to run the command as outlined in
the book "simple_markup2.py < test_input.txt > test_output.html i get
the
following error every time.
IO
Matthew Edmondson wrote:
Thanks a ton for the help. At first adding the path didn't work, but after
restarting my computer, ran like a champ :)
Hopefully I can get decent with this language one day!
All you needed was to restart the DOS-box (Command Prompt), after you
did the control-panel
matt0177 wrote:
Adding the python before the command line didn't work at first, but upon
moving the files to the c:\python25 it worked like a champ. Thank you both
for the help. Very frustrating to run into stuff like this when you're first
trying to learn a knew language, it really throws off yo
Adding the python before the command line didn't work at first, but upon
moving the files to the c:\python25 it worked like a champ. Thank you both
for the help. Very frustrating to run into stuff like this when you're first
trying to learn a knew language, it really throws off your momentum!
--
Gabriel Genellina wrote:
En Mon,
06 Jul 2009 19:56:40 -0300, matt0177 escribió:
When I try to run the command as outlined in
the book "simple_markup2.py < test_input.txt > test_output.html i get
the
following error every time.
IOError: [Errno 9] Bad file descriptor
That's a Windows probl
En Mon, 06 Jul 2009 19:56:40 -0300, matt0177 escribió:
When I try to run the command as outlined in
the book "simple_markup2.py < test_input.txt > test_output.html i get the
following error every time.
IOError: [Errno 9] Bad file descriptor
That's a Windows problem. When you execute the scri
Clover wrote:
> When trying to do some things on my Mac (starting Lyx, compiling Latex
> via TextMate) I get this error:
>
> python: execv:
> /Library/Frameworks/Python.framework/Versions/2.5/Resources/Python.app/Contents/MacOS/Python:
>
> No such file or directory
>
> I (and people on Lyx an
On Aug 26, 12:58 pm, Clover <[EMAIL PROTECTED]> wrote:
> When trying to do some things on my Mac (starting Lyx, compiling Latex
> via TextMate) I get this error:
>
> python: execv:
> /Library/Frameworks/Python.framework/Versions/2.5/Resources/Python.app/Contents/MacOS/Python:
> No such file or dire
On Mar 27, 8:19 am, "Legend" <[EMAIL PROTECTED]> wrote:
> I wasn't able to run a Python script. But then later I was able to run
> it through the Shell. I was experimenting with cron jobs and set up
> the python execution in as a cron. The first time it ran, It was fine
> but then after that, it st
Legend napisał(a):
> I wasn't able to run a Python script. But then later I was able to run
> it through the Shell. I was experimenting with cron jobs and set up
> the python execution in as a cron. The first time it ran, It was fine
> but then after that, it started giving me some errors. Now whe
Please don't post HTML message bodies to a public forum.
Antonios Katsikadamos <[EMAIL PROTECTED]> writes:
> hi all. I am using python 2.4. I have to run an older python code
> and when i run it i get the following message
> IndentationError: expected an indented block.
> 1)what does this mean?
Antonios Katsikadamos пишет:
> hi all. I am using python 2.4. I have to run an older python code and when i
> run it i get the following message
>
> IndentationError: expected an indented block.
>
> 1)what does this mean?
http://www.python.org/doc/2.4.3/ref/indentation.html
> 2)how can i ove
91 matches
Mail list logo