Skip to content

Latest commit

 

History

History
107 lines (93 loc) · 3.01 KB

Installation Guide - MacOS.md

File metadata and controls

107 lines (93 loc) · 3.01 KB

How to get started with MISST - MacOS

Manual installation on Mac0S using miniconda3

Nota Bene

This worked for @CAprogs on a MacbookPro 2021 M1 pro.

Follow these steps

if you don't have MINICONDA , you should install it using this link.

Download Discord here. ( required to use the app )

For Pyaudio package you should install Homebrew first.

Then run brew install portaudio in your terminal ( this is required to install pyaudio later )

Now follow these steps 🤓

  • Download the MISST Zip file here
  • Create your virtual env using conda (Copy and paste in your Terminal)

Enter miniconda3 folder ⬇️

cd miniconda3

Create a venv named MISSTvenv ⬇️

conda create --name MISSTvenv

Activate the MISSTvenv ⬇️

conda activate MISSTvenv

Install pip ( inside the MISSTvenv ) ⬇️

conda install pip

Install the requirements packages ( inside the MISSTvenv ).

Replace < path/to/requirements.txt > with your path to the requirements.txt file ⬇️

conda install --file path/to/requirements.txt

At this point I encountered some issues when installing packages with pip / conda. ( All packages weren't installed )

Before proceeding, please ensure that you have Git installed on your macOS system.

  • In your terminal, enter the following command ⬇️
git --version
  1. If you see the Git version displayed, it means Git is already installed on your system, and you can proceed to the next step.

  2. If Git is not installed, you can install it using Homebrew ⬇️ ( See the Doumentation here )

brew install git

Now just run the following command ( inside the MISSTvenv ) ⬇️

pip install customtkinter git+https://github.com/Frikallo/gputil.git@master music_tag psutil PILLOW pypresence lyrics_extractor demucs pyaudio soundfile scipy vcolorpicker

Then run ( inside the MISSTvenv ) ⬇️

conda install pyqt

Now add these changes to MISSTapp.py code ⬇️

  • Line 94 remove "default=" ⬇️
self.iconbitmap (default=r"./Assets/icon.ico")
  • Line 594 - 600 corresponding to ⬇️
self.effects_checkbox = customtkinter.CTkSwitch(
            master=self.center_frame,
            text="Effects",
            command=self.effects,
            variable=self.nc_var,
            onvalue="on",
            offvalue="off",
        )
  • Add this line ⬇️
fg_color=["#FFFFFF", "#000000"]

  • Enter the MISSTapp.py Folder ( replace with the real path )
 cd path/to/MISSTapp.py
  • Run the App 🧞‍♂️ ( inside the MISSTvenv )
 python MISSTapp.py