Skip to content

Mascoty is a desktop application created to breathe life into your avatar

License

Notifications You must be signed in to change notification settings

2Delight/mascoty-taurine

Folders and files

NameName
Last commit message
Last commit date

Latest commit

Apr 17, 2023
dd47e01 · Apr 17, 2023
Apr 17, 2023
Apr 1, 2023
Apr 17, 2023
Apr 16, 2023
Apr 4, 2023
Jan 28, 2023
Apr 17, 2023
Apr 10, 2023
Apr 7, 2023
Apr 4, 2023
Mar 23, 2023
Jan 23, 2023
Jan 23, 2023
Apr 7, 2023

Repository files navigation

Mascoty Logo

Statuses

OS Build (Pre-Release) Test Release
Windows Windows Windows Windows
MacOS MacOS MacOS MacOS
Linux Linux Linux Linux

Installation

Windows

  1. Download LibTorch

  2. Unzip it somewhere you like. From now on we'll refer to this place as %TORCH_DIR%

  3. Add it to %PATH%. You can use GUI or insert next command into CMD:

setx PATH "%PATH%;%TORCH_DIR%\libtorch\lib"

Add /M flag to set it for all users (requires super user access)

  1. Download Windows release MSI installer (coming soon)

MacOS

  1. Install homebrew:
/bin/bash -c "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/HEAD/install.sh)"
  1. Install LibTorch:
brew install pytorch
  1. Download MacOS release DMG installer (coming soon)

Linux

  1. Install all dependencies:
sudo apt-get update

# Basic
sudo apt-get install curl \
                     wget \
                     build-essential

# Tauri
sudo apt-get install libwebkit2gtk-4.0-dev \
                     libssl-dev \
                     libgtk-3-dev \
                     libayatana-appindicator3-dev \
                     librsvg2-dev

# Additional
sudo apt-get install libxcb-shape0-dev \
                     libxcb-xfixes0-dev
                     libxcb1-dev \
                     libxkbcommon-dev \
                     libwebkit2gtk-4.0 \
                     libudev-dev \
                     libsdl2-dev \
                     libasound2-dev
  1. Install LibTorch
wget https://download.pytorch.org/libtorch/cpu/libtorch-cxx11-abi-shared-with-deps-1.13.0%2Bcpu.zip
unzip libtorch-cxx11-abi-shared-with-deps-1.13.0+cpu.zip
  1. Add shared libraries (we'll refer the place where you have unzipped Torch as $TORCH_DIR)
export LD_LIBRARY_PATH=$LD_LIBRARY_PATH:$TORCH_DIR/libtorch/lib
sudo sh -c "echo $PWD/libtorch/lib >> /etc/ld.so.conf"
sudo ldconfig
sudo ldconfig -p
  1. Download Linux release Deb installer (coming soon)