File: Developing-MacOS.md

package info (click to toggle)
plaso 20201007-2
  • links: PTS, VCS
  • area: main
  • in suites: bullseye
  • size: 519,924 kB
  • sloc: python: 79,002; sh: 629; xml: 72; sql: 14; vhdl: 11; makefile: 10
file content (43 lines) | stat: -rw-r--r-- 909 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
# Developing on MacOS

## XCode

First install XCode

Next install XCode Command Line Tools:

```bash
xcode-select --install
```

## Git

Install the [git tools](http://git-scm.com/downloads).

Checkout the plaso source from the git repo:

```bash
git clone https://github.com/log2timeline/plaso.git
```

## Dependencies

Install the dependencies in a [virtualenv environment](../user/MacOS-Source-Release.html#install-plaso-contained-within-a-virtual-environment)

Check if you have all the dependencies installed and have the right minimum
version:

```bash
./utils/check_dependencies.py
```

**Note that some dependencies are actively under development and can be
frequently updated, therefore we recommend checking the status of the
dependencies regularly.**

## Development tools

If you intend to do development on plaso you'll also need to install some development tools:

* PyLint 1.9.x
* Python Mock