1
0
mirror of https://github.com/trezor/trezor-firmware.git synced 2024-10-12 10:58:59 +00:00
trezor-firmware/docs/core/build/index.md

36 lines
1.1 KiB
Markdown
Raw Normal View History

2019-08-08 09:12:17 +00:00
# Build
2020-02-10 12:05:41 +00:00
## New Project
2019-08-08 09:12:17 +00:00
Run the following to checkout the project:
```sh
2020-02-10 12:05:41 +00:00
git clone --recurse-submodules https://github.com/trezor/trezor-firmware.git
2019-08-08 09:12:17 +00:00
cd trezor-firmware/core
```
2020-02-10 12:05:41 +00:00
After this you will need to install some software dependencies based on what flavor
of Core you want to build. You can either build the Emulator or the actual firmware
running on ARM devices. Emulator (also called _unix_ port) is a unix version that can
run on your computer. See [Emulator](../emulator/index.md) for more information.
## Existing Project
If you are building from an existing checkout, do not forget to refresh the submodules
and the pipenv environment:
2019-08-08 09:12:17 +00:00
```sh
2020-02-10 12:05:41 +00:00
git submodule update --init --recursive --force
pipenv sync
2019-08-08 09:12:17 +00:00
```
## Pipenv
2020-02-10 12:05:41 +00:00
We use [Pipenv](https://docs.pipenv.org/en/latest/) to install and track Python dependencies. You need to install it, sync the packages and then use `pipenv run` for every command or enter `pipenv shell` before typing any commands. **The commands in this section suppose you are in a `pipenv shell` environment!**
2019-08-08 09:12:17 +00:00
```sh
sudo pip3 install pipenv
pipenv sync
2020-02-10 12:05:41 +00:00
pipenv shell
2019-08-08 09:12:17 +00:00
```