44
55** Note that using pip outside virtualenv is not recommended since it ignores
66your systems package manager. If you aren't comfortable debugging package
7- installation issues, this is not the option for you .**
7+ installation issues use virtualenv .**
88
99Create and activate a virtualenv:
1010
1111``` bash
12- virtualenv dfimagetoolsenv
13- cd dfimagetoolsenv
12+ virtualenv dfimagetools_venv
13+ cd dfimagetools_venv
1414source ./bin/activate
1515```
1616
17- Upgrade pip and install dfimagetools dependencies :
17+ Upgrade pip and install dfImageTools :
1818
1919``` bash
2020pip install --upgrade pip
@@ -26,42 +26,3 @@ To deactivate the virtualenv run:
2626``` bash
2727deactivate
2828```
29-
30- ## Ubuntu 22.04 LTS
31-
32- To install dfimagetools from the [ GIFT Personal Package Archive (PPA)] ( https://launchpad.net/~gift ) :
33-
34- ``` bash
35- sudo add-apt-repository ppa:gift/stable
36- ```
37-
38- Update and install dfimagetools:
39-
40- ``` bash
41- sudo apt update
42- sudo apt install python3-dfimagetools dfimagetools-tools
43- ```
44-
45- ## Windows
46-
47- The [ l2tbinaries] ( https://github.com/log2timeline/l2tbinaries ) contains the
48- necessary packages for running dfimagetools. l2tbinaries provides the following
49- branches:
50-
51- * main; branch intended for the "packaged release" of dfimagetools and dependencies;
52- * dev; branch intended for the "development release" of dfimagetools;
53- * testing; branch intended for testing newly created packages.
54-
55- The l2tdevtools project provides [ an update script] ( https://github.com/log2timeline/l2tdevtools/wiki/Update-script )
56- to ease the process of keeping the dependencies up to date.
57-
58- The script requires [ pywin32] ( https://github.com/mhammond/pywin32/releases ) and
59- [ Python WMI] ( https://pypi.org/project/WMI ) .
60-
61- To install the release versions of the dependencies run:
62-
63- ```
64- set PYTHONPATH=.
65-
66- C:\Python3\python.exe tools\update.py --preset dfimagetools
67- ```
0 commit comments