acudovs / terminator-split

Wrapper script for splitting Terminator terminal emulator
MIT License
25 stars 11 forks source link

How to install #7

Open servel333 opened 3 years ago

servel333 commented 3 years ago

The README.md does not address how to install this too. I'm running Ubuntu 20.10 and I'm having trouble installing this tool.

git clone git@github.com:AlekseyChudov/terminator-split.git ~/terminator-split
sudo mv ~/terminator-split /opt/terminator-split/
sudo ln -s /opt/terminator-split/terminator-split  /usr/bin/terminator-split

And then I run terminator-split but I get the error:

$ terminator-split
Traceback (most recent call last):
  File "/usr/bin/terminator-split", line 15, in <module>
    import configobj
ImportError: No module named configobj

Trying to install this package does not appear to help...

$ pip install configobj
Requirement already satisfied: configobj in /usr/lib/python3/dist-packages (5.0.6)
servel333 commented 3 years ago

Ok, so I got a list of manually installed packages (from here)

comm -23 <(apt-mark showmanual | sort -u) <(gzip -dc /var/log/installer/initial-status.gz | sed -n 's/^Package: //p' | sort -u)

And I had a package installed python-is-python2 (no idea why or when it got installed)

And I don't know if your script was made for Python 2 or 3... And I don't know how to solve this issue...