The Particl Academy documentation is based on Read the Docs. Content is written in RestfulText.
- Install python 3.x
- Have sublime-text
- Have sublime-merge
- Clone this repository
Homebrew is a powerful software package manager for the commandline.
xcode-select --install
ruby -e "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/master/install)"
Once you've installed Homebrew, insert the Homebrew directory at the top of your PATH environment variable. Copy this line to the terminal and hit enter.
echo "export PATH=/usr/local/bin:/usr/local/sbin:$PATH" >> ~/.profile
brew install python
brew link python
For python it should be 3.7.x and for pip 20.x pointing to the same python version.
python --version
pip -V
If this is not the case set an alias.
echo 'alias python=python3' >> ~/.bash_aliases
echo 'alias pip=pip3' >> ~/.bash_aliases
source ~/.bash_aliases
Python package manager should do the job.
pip install sphinx sphinx-rtd-theme sphinx-copybutton sphinx-tabs
Business as usual. If no git is installed use brew to do so: brew install git
git clone https://github.com/Particl-Community/academy.git
Go to https://www.sublimetext.com/ and https://www.sublimemerge.com and install them both
The local copy is build into the _build
directory.
rm -Rf _build && make html