-
Notifications
You must be signed in to change notification settings - Fork 237
Run manuskript on OS X
This is a guide for running manuskript from sources on OS X. It's really easy.
It explains how to install all necessary dependencies, and then run the soft.
Every command need to be run in terminal (Applications > Utilities
and double-click on Terminal
)
Install homebrew
By running this in terminal:
/usr/bin/ruby -e "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/master/install)"
Homebrew is a package manager for OS X.
brew install python3
brew install pyqt5
pip3 install lxml
If you use a newer Mac with the M1 ARM architecture, please make sure to tell pip3
to install the correct packages (see issue 966).
PyEnchant is used for spellchecking.
brew install enchant
pip3 install pyenchant
Go to where you'd like to download manuskript, f.ex:
cd ~/Documents/
Clone git repository (it will download manuskript in a folder named manuskript
)
git clone https://github.com/olivierkes/manuskript.git
Run manuskript and be glad:
./manuskript/bin/manuskript
If it does not run due to "No module named 'PyQt5'", install it from pip3
pip3 install PyQt5
If you'd like to run manuskript's test version, type:
cd manuskript
git checkout remotes/origin/develop
And then you can run it the same way, with:
./bin/manuskript