From 919c3b2a65fb23573bfbdf283cffb58a406635ba Mon Sep 17 00:00:00 2001 From: Ammar Askar Date: Wed, 12 Jun 2019 01:42:21 -0700 Subject: [PATCH] Fix documentation for sept's python dependencies pyCrypto and pycryptodome are never supposed to be installed together [1]. Installing them together causes very weird import errors when sept runs. We should specify one, probably pycryptodome since its more modern. [1] https://pycryptodome.readthedocs.io/en/latest/src/installation.html#installation --- docs/building.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/building.md b/docs/building.md index e04432e51..c25177610 100644 --- a/docs/building.md +++ b/docs/building.md @@ -3,6 +3,6 @@ The process for building Atmosphère is similar to building Fusée Gelée payloa In order to build Atmosphère you must have devkitARM and devkitA64 installed on your computer. You can find instructions on how to install and setup devkitARM and devkitA64 on various OSes [here](https://devkitpro.org/wiki/Getting_Started). You'll need to install the following packages via (dkp-)pacman: switch-dev switch-freetype devkitARM devkitarm-rules -sept requires you have python installed with the pycrypto and pycryptodome PyPi packages (pip install pycrypto pycryptodome). You may also want to install the zip package from your package manager of choice to support the `make dist` recipe. +sept requires you have python installed with the pycryptodome PyPi packages (`pip install pycryptodome`). You may also want to install the zip package from your package manager of choice to support the `make dist` recipe. Once you have finished installing the devkitPro-provided toolchain/libraries, python, and the dependencies, simply clone the Atmosphère repo (clone with the -r flag), change your directory to it and run `make`.