M4cs / foxify-cli

:computer: Firefox Command-Line Theme Manager :fox_face: Inspired by spicetify-cli :fire:

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

No "git" module found for foxify

pyrox0 opened this issue · comments

commented

Describe the bug
ModuleNotFoundError when running foxify.

Before creating your bug report, have you checked the Troubleshooting guide? Yes.

To Reproduce
Steps to reproduce the behavior:
Install foxify, then run
foxify
you will get
ModuleNotFoundError: No module named 'git'

Expected behavior
I expected foxify to work.

Environment

  • OS: macOS
  • Python Version 3.7.7, from brew.

Additional context
Add any other context about the problem here.
I tried installing foxify from pip, and that didn't work. Then I git-py from pip to try and be able to import git, but that didn't help. Then I removed the pip version and installed manually with git clone, etc. neither worked.

Hi @ModdedGamers

This is means that you don't have gitpython module installed.

You can install it by doing:

$ pip install gitpython

probably, it's a good idea to add this as a direct dependency to foxify-cli.

commented

Thanks!

Going to be pushing an update shortly that fixes this.