472,127 Members | 1,502 Online
Bytes | Software Development & Data Engineering Community
Post +

Home Posts Topics Members FAQ

Join Bytes to post your question to a community of 472,127 software developers and data experts.

help - python can't find file

-learning python with limited knowledge of linux.
-get error msg 21 "file or directory does not exist"
-running Suse linux 10.
-haven't had a problem before
- rebooted several times.
-python opened in shell/terminal program Konsole window like this
user1@linux!~ - shell - Konsole
Sessions View Bookmark Settings Help

-first line in window gives me a linux prompt:
user1#linux:~>

- whereupon I type python and get >>a command line I think it is
called or type python pyfilename.py and it runs/interprets/opens
the file on screen

- but now I get a error message 21 saying file or directory doesn't
exist.

- my py files are created with editor gedit
- clicking on any py file and linux asks me to open it with what
program and I choose utilities/editdors/gedit and it works.

-all my py files contain the following lines at the beginning
#! /usr/bin/env python
# -*- coding: utf-8 -*-

# filename: blankpy.py (for example of a file name)
- my linux file structure is as follows shown under Konqueror window:
rootfolder
bin
boot
dev
etc
home
user1
bin
desktop
documents
lib
media
dvdrecorder
floppy

- (for example, and continues on, of course)
- none of my python books or linux books show that I can type
python /dev/sda/ blankpy.py and get python to open it like in
windows98 or dos python A:\blankpy.py

embarrassed and frustrated
May 21 '07 #1
2 3321
quoth the enquiring mind:
- but now I get a error message 21 saying file or directory doesn't
exist.
You must be in the same directory (in konsole) as the python script for this
to work, else enter the relative path to the file:

Assuming you are in your home directory (this is where a new konsole will
start you), and the py scripts are in a directory 'pythondir':

$ cd pythondir
$ python myscript.py

or:

$ python pythondir/myscript.py

You could also chmod the script to be executable and run it as a regular
command ...however... I don't mean this to sound like RTFM but I do think
that you could use some reading on Linux CLI usage. You say you have some
Linux books?

I say this as my reading of your message indicates your problems lie with
misunderstanding the shell/paths etc, not with Python itself...

-d
--
darren kirby :: Part of the problem since 1976 :: http://badcomputer.org
"...the number of UNIX installations has grown to 10, with more expected..."
- Dennis Ritchie and Ken Thompson, June 1972
May 21 '07 #2
darren,

thanks for your explanation. I copied my paths and listed them in my
code file
#! /bin/user1/ python

and python finds the file and interprets it so that will keep me going
until my buddy returns to the city to explain my errors. It appears
that my problem arose from taking lesson code out of text books and
copying the pathing that is I guess slightly different than mine.

Thanks ever so much.
tk

darren kirby wrote:

>
quoth the enquiring mind:
- but now I get a error message 21 saying file or directory doesn't
exist.

You must be in the same directory (in konsole) as the python script for this
to work, else enter the relative path to the file:

Assuming you are in your home directory (this is where a new konsole will
start you), and the py scripts are in a directory 'pythondir':

$ cd pythondir
$ python myscript.py

or:

$ python pythondir/myscript.py

You could also chmod the script to be executable and run it as a regular
command ...however... I don't mean this to sound like RTFM but I do think
that you could use some reading on Linux CLI usage. You say you have some
Linux books?

I say this as my reading of your message indicates your problems lie with
misunderstanding the shell/paths etc, not with Python itself...

-d
--
darren kirby :: Part of the problem since 1976 :: http://badcomputer.org
"...the number of UNIX installations has grown to 10, with more expected..."
- Dennis Ritchie and Ken Thompson, June 1972
May 22 '07 #3

This discussion thread is closed

Replies have been disabled for this discussion.

Similar topics

699 posts views Thread by mike420 | last post: by
10 posts views Thread by Jacek Generowicz | last post: by
5 posts views Thread by duikboot | last post: by
5 posts views Thread by jester.dev | last post: by
4 posts views Thread by Active8 | last post: by
10 posts views Thread by svenn.are | last post: by
1 post views Thread by Rahul | last post: by
1 post views Thread by Paul Rubin | last post: by
12 posts views Thread by adamurbas | last post: by

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.