Please suggest what commands to use.
# xschem
v
Please suggest what commands to use.
s
Do a git pull to update the xschem cloned directory, then do a
sudo make uninstall
before configuring, building and installing again.
you can also manually remove xschem:
Copy code
[sudo] rm -rf .../share/xschem
[sudo] rm -rf .../share/doc/xschem
[sudo] rm .../bin/xschem
[sudo] rm .../share/man/man1/xschem.1
v
@Stefan Schippers i reinstalled xschem as per above suggestions and it got installed at path
/usr/local/share
. But xschem is sourcing from some other location in m setup as seen in screenshot. Don't know how it came in this path. Please suggest how to remove it so that latest updated version only is sourced.
s
remove the following:
Copy code
rm  ~/bin/xschem
rm ~/share/man/man1/xschem.1
rm -rf ~/share/xschem
rm -rf ~/share/doc/xschem
v
I manually removed all xschem directories and then configured, build and installed xschem again. But xschem is not installed .
which xschem
command returns no output.
s
try:
ls /usr/locall/bin/xschem
if it is not there then go in the xschem source directory and type:
sudo make install
v
It worked with
sudo apt install
. Xschem is invoking. Thanks @Stefan Schippers