• 0 Posts
  • 3 Comments
Joined 1 year ago
cake
Cake day: March 8th, 2025

help-circle


  • You can run it in an virtual environment:

    python -m venv someproject

    source someproject/bin/activate

    Then you can run the commands in the git README you posted.

    pip …

    Will will install the include files needed within this virtual environment. Alternatively you can do

    apt install …

    Instead of using pip. Your python script should run within the virtual environment.