Get-It icon indicating copy to clipboard operation
Get-It copied to clipboard

Impossible to paste URL in main textfield

Open tokamac opened this issue 5 years ago • 1 comments

All is installed correctly and YouTube DL works well in CLI. But in Get It, it is impossible to type or paste any character in the text field of the main window. Also, Prefs button in upper right corner, as well as the "Open destination folder" button are both greyed out. My system is macOS Catalina 10.15.2

cat /tmp/getit_logs
cat: /tmp/getit_logs: No such file or directory

tokamac avatar Jan 20 '20 11:01 tokamac

Follow-up: when trying your command line to reinstall dependancies using the CLI:

if ! xcode-select -v &> /dev/null; then xcode-select --install; fi; if brew -v &> /dev/null; then brew update; else echo /usr/bin/ruby -e '$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/master/install)'; fi; if brew ls --versions python &> /dev/null; then brew upgrade python; else brew install python; brew link python; fi; if brew ls --versions python3 &> /dev/null; then brew upgrade python3; else brew install python3; fi; if pip2.7 list | grep -i pycrypt &> /dev/null; then pip2.7 install pycrypt --upgrade; else pip2.7 install pycrypt; fi; if youtube-dl --version &> /dev/null; then brew upgrade youtube-dl; else brew install youtube-dl; fi; if brew list libav &> /dev/null; then brew upgrade libav; else brew install libav; fi; if brew list ffmpeg &> /dev/null; then brew upgrade ffmpeg; else brew install ffmpeg; fi

it appears that both directories: /usr/local/sbin and /usr/local/share/man/man8 are not owned by admin in Catalina, therefore are not writable.

This can be solved with commands: sudo chown -R $(whoami) /usr/local/sbin /usr/local/share/man/man8 and chmod u+w /usr/local/sbin /usr/local/share/man/man8 (replacing $(whoami) with correct user:admin)

But then, the first command of this message leads to the following errors:

==> Upgrading 1 outdated package:
python3 2.7.14 -> 3.7.6_1
==> Upgrading python3 
Error: The following formula
  python
cannot be installed as binary package and must be built from source.
Install the Command Line Tools:
  xcode-select --install

DEPRECATION: Python 2.7 will reach the end of its life on January 1st, 2020. Please upgrade your Python as Python 2.7 won't be maintained after that date. A future version of pip will drop support for Python 2.7. More details about Python 2 support in pip, can be found at https://pip.pypa.io/en/latest/development/release-process/#python-2-support
DEPRECATION: Python 2.7 will reach the end of its life on January 1st, 2020. Please upgrade your Python as Python 2.7 won't be maintained after that date. A future version of pip will drop support for Python 2.7. More details about Python 2 support in pip, can be found at https://pip.pypa.io/en/latest/development/release-process/#python-2-support

Also this one:

==> Pouring faac-1.29.9.2.catalina.bottle.tar.gz
cp: utimes: /usr/local/Cellar/faac/.: Operation not permitted
cp: chmod: /usr/local/Cellar/faac/.: Operation not permitted
Error: Failure while executing; `cp -pR /var/folders/vy/6v3g5gq51_l9pr741q1bpx4c0000gp/T/d20200120-57258-15kspt5/faac/. /usr/local/Cellar/faac` exited with 1. Here's the output:
cp: utimes: /usr/local/Cellar/faac/.: Operation not permitted
cp: chmod: /usr/local/Cellar/faac/.: Operation not permitted

Warning: Bottle installation failed: building from source.
Error: The following formula
  faac
cannot be installed as binary package and must be built from source.

although /usr/local/Cellar/faac/ and its content are writable by members of the admin group!

and this third one:

==> Upgrading 1 outdated package:
ffmpeg 2.8 -> 4.2.2
==> Upgrading ffmpeg 
Error: The following formula
  [#<Dependency: "python" []>, #<Options: []>]
cannot be installed as binary package and must be built from source.

tokamac avatar Jan 20 '20 11:01 tokamac