1 | initial version |
# Answering my own question: this seems to make it work
# put this in the LRC.pyFile before any code "from sage.all import *"
import sys
sys.path.append('/media/sf_D_DRIVE//unixshare/forLRC') # move your python files here
import LRC
from LRC import *
# try it out
lrc = LRC()
print lrc
An it printed what I expected
2 | spelling |
# Answering my own question: this seems to make it work
# put this in the LRC.pyFile before any code "from sage.all import *"
import sys
sys.path.append('/media/sf_D_DRIVE//unixshare/forLRC') # move your python files here
import LRC
from LRC import *
# try it out
lrc = LRC()
print lrc
An And it printed what I expected