@Ashutosh Kumar if you are working in folder '`PICO`' the best way to avoid these issues is:
put the
xschemrc
file in the
PICO
directory and start xschem from there.
add the following line at end in the
xschemrc
file:
append XSCHEM_LIBRARY_PATH :$env(PWD)
or the equivalent:
append XSCHEM_LIBRARY_PATH :[pwd]
If your schematic was created before doing this, edit the top
.sch
file, find the symbol name and change the symbol reference from:
C {/absolute/path/to/PICO/bandgap_opamp.sym} 610 -500 0 0 {name=x1}
to:
C {bandgap_opamp.sym} 610 -500 0 0 {name=x1}
Xschem will look for this
bandgap_opamp.sym
in any directories listed in
XSCHEM_LIBRARY_PATH
. This makes the design portable.