Ask Your Question
1

Adding some *.py files to sagemath notebook?

asked 11 years ago

russ_hensel gravatar image

updated 10 years ago

FrédéricC gravatar image

Ok I have spent hours going thru online docs for such a simple question but now give up, so now I am asking:

I am running the sage appliance in virtual box ( sage5.1 ) under windows 7.

I have some python file, but no setup.py file for them.

I would like to add them to sage so in the notebook I can import them.

Can anyone tell me where to put them, hopefully without expecting me to know my well very well around linux ( I can copy move make directories, and modify some access rights, but I do not want to learn bash scripting ) If you could give command on a close to cut and paste basis that would be wonderful.

Preview: (hide)

Comments

Do you expect to do this often, like having your own local python module library? Or maybe this is a one-off?

rickhg12hs gravatar imagerickhg12hs ( 11 years ago )

not sure, in this case it is a module from a course which does not have an install utility.

russ_hensel gravatar imageruss_hensel ( 11 years ago )

3 Answers

Sort by » oldest newest most voted
1

answered 11 years ago

rickhg12hs gravatar image

Here's what I usually do:

import sys
sys.path.append('/path/to/my/local/python/files') # move your python files here
import mypythonfile
Preview: (hide)
link

Comments

Depending on the collection source/purpose/use of the python files, I'll put them in something like /home/myhomedir/sage/mypythonfiles, or in a subdir somewhere under /usr/local or /opt. I steer clear of OS related dirs like /etc, /bin, /usr/lib, /lib, etc., because I don't want to break anything and I don't want to worry about what OS updates might do.

rickhg12hs gravatar imagerickhg12hs ( 11 years ago )
0

answered 11 years ago

ppurka gravatar image

This is what I do

import os
os.chdir("/path/to/directory") # /path/to/directory is where my python file is kept
from mypythonfile import *
Preview: (hide)
link
0

answered 11 years ago

russ_hensel gravatar image

updated 11 years ago

This is the original poster with an update. Tried both of the above from the notebook after moving the files to /etc/mesa

Neither worked -- then I remembered that linux is full of gotchas so I broke out of the notebook right-ctrl and f1, then logged in as root ( password sage ) and from the command line changed the file rights: chmod uog=rwx -R /etc/mesa

Then I restarted the sage vm. So far it seems to work ( the import sys method, the other may work as well, I will try later. )

Thanks very much.

Preview: (hide)
link

Your Answer

Please start posting anonymously - your entry will be published after you log in or create a new account.

Add Answer

Question Tools

Stats

Asked: 11 years ago

Seen: 942 times

Last updated: May 08 '13