Re: [Tutor] Python 3.2 Install Not Responding To Python Command!!

2011-04-09 Thread Nevins Duret
Hello Lie Ryan, Thanks so much for your reply. Well when I ran: whereis python I get this: python: /usr/bin/python3.1-config /usr/bin/python2.6-dbg /usr/bin/python3.1 /usr/bin/python2.6-config /usr/bin/python2.7 /usr/bin/python3.1-dbg-config /usr/bin/python2.6-dbg-config /usr/bin/pytho

Re: [Tutor] Python 3.2 Install Not Responding To Python Command!!

2011-04-09 Thread Walter Prins
On 9 April 2011 17:44, Nevins Duret wrote: > Compiling with Ubuntu > > # get required packages for buildsudo apt-get install build-essential > libncursesw5-dev libreadline5-dev libssl-dev libgdbm-dev libc6-dev > libsqlite3-dev tk-dev > # get sourcewget http://www.python.org/ftp/python/3.2/Pyth

Re: [Tutor] Python 3.2 Install Not Responding To Python Command!!

2011-04-09 Thread Nevins Duret
On 04/09/2011 02:32 PM, Walter Prins wrote: On 9 April 2011 17:44, Nevins Duret > wrote: Compiling with Ubuntu # get required packages for build sudo apt-get install build-essential libncursesw5-dev libreadline5-dev libssl-dev libgdbm-dev libc6-de

[Tutor] Cherrypy HtmlArea

2011-04-09 Thread Andrés Chandía
I have put a textarea at a web generated by cherrypy, but I would like to add  some user editing tool like HtmlArea, I've been sufing arround but I haven't found clear information. I would appreciate your help! ___ andrés chandía P No imprima innecesariamente.

[Tutor] Cherrypy and Iframes (or how to insert a file in a page)

2011-04-09 Thread Andrés Chandía
the codes return "" file.txt is genereated by a previous python script and I need to display it at the web generated by cherrypy, but it gives me this error: Traceback (most recent call last): File "/usr/lib/pymodules/python2.6/cherrypy/_cprequest.py", line 606, in respond cherrypy.resp

[Tutor] Invisible Characters in Fortran/Python

2011-04-09 Thread Tyler Glembo
Hi All, So I have a ~3000 line fortran code that needs to be updated to run new files by simply updating a few lines in the code (~10 lines). I thought python would be a great way to do so since I know a little python but not fortran. So, my plan was to read in each line, and then at a certain li

Re: [Tutor] Invisible Characters in Fortran/Python

2011-04-09 Thread xDog Walker
On Saturday 2011 April 09 15:12, Tyler Glembo wrote: > Hi All, > So I have a ~3000 line fortran code that needs to be updated to run new > files by simply updating a few lines in the code (~10 lines). I thought > python would be a great way to do so since I know a little python but not > fortran.

Re: [Tutor] Cherrypy and Iframes (or how to insert a file in a, page)

2011-04-09 Thread Alan Harris-Reid
Andreas... > NotFound: (404, "The path '/file.txt' was not found.") This error message often occurs because file.txt is a static file and you have not told CherryPy where to look for static files. From the look of the error I am guessing that file.txt is in your root directory, in which ca

[Tutor] Virtualenv Error

2011-04-09 Thread Malcolm Newsome
Hey All, I installed virtualenv and am getting this error when trying to create one. I'm running Windows 7. Can anyone help?? Thanks! Microsoft Windows [Version 6.1.7601] Copyright (c) 2009 Microsoft Corporation. All rights reserved. C:\Users\Malcolm>virtualenv chipysite New python executabl

Re: [Tutor] Invisible Characters in Fortran/Python

2011-04-09 Thread Steven D'Aprano
Tyler Glembo wrote: The problem I am having is with hidden/invisible character. In the fortran code, there are line indents which are denoted with an invisible character ^I. When I write with python, there is no ^I at the beginning of the line ^I is a tab character, which you can include in

Re: [Tutor] Python 3.2 Install Not Responding To Python Command!!

2011-04-09 Thread Rohan Sachdeva
Just so you know there is a PPA for 3.2 - https://launchpad.net/~irie/+archive/python3.2 Should make things a lot easier. Rohan On Sat, Apr 9, 2011 at 11:45 AM, Nevins Duret wrote: > On 04/09/2011 02:32 PM, Walter Prins wrote: > > > > On 9 April 2011 17:44, Nevins Duret wrote: > >> Compilin

Re: [Tutor] Python 3.2 Install Not Responding To Python Command!!

2011-04-09 Thread Nevins Duret
On 04/09/2011 06:12 PM, Rohan Sachdeva wrote: Just so you know there is a PPA for 3.2 - https://launchpad.net/~irie/+archive/python3.2 Should make things a lot easier. Rohan On Sat, Apr 9, 2011 at 11:45 AM, Nevins Duret

Re: [Tutor] Cherrypy HtmlArea

2011-04-09 Thread Evans Anyokwu
Hi Andrés, I'm not sure a lot of people on this list use Cheerypy - I use django myself. I would suggest you check cherrypy website, there's an IRC link at the top of the page. Good luck 2011/4/9 "Andrés Chandía" > > > I have put a textarea at a web generated by cherrypy, but I would like to >