| 1 | initial version |
It seems like a strange thing to make a copy of a file you already have in your SageMath installation. You are talking about virasoro.py, right? If I make a copy of it and put a main.py next to it with the code
from sage.all import *
from virasoro import *
then running conda run --live-stream --name sage python main.py works for me on Linux. Does that not work for you? And why not avoid the file copy and import from the file you have in your installation?
from sage.all import *
from sage.algebras.lie_algebras.virasoro import *
Copyright Sage, 2010. Some rights reserved under creative commons license. Content on this site is licensed under a Creative Commons Attribution Share Alike 3.0 license.