Skip to content

Commit

Permalink
update pyenv latest installation
Browse files Browse the repository at this point in the history
  • Loading branch information
xwings committed Nov 10, 2022
1 parent 566ed73 commit 13f8494
Showing 1 changed file with 13 additions and 17 deletions.
30 changes: 13 additions & 17 deletions docs/install.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,19 @@ title: Installation

Qiling Framework is written in Python programming language and it works with different operating system and not limiting to any CPU architecture.

### One line installer
### Pyenv Installation with latest dev branch

If you are using pyenv, run the command shown below.

```sh
python3 -m venv qilingenv
qilingenv/bin/activate
git clone -b dev https://github.com/qilingframework/qiling.git
cd qiling && git submodule update --init --recursive
pip3 install .
```

### pip3 install latest dev branch Qiling

Installation using pip (stable version)

Expand Down Expand Up @@ -43,22 +55,6 @@ Also don't forget to initialize the rootfs.
git submodule update --init --recursive
```

### Dev branch: latest and greatest

```
git clone -b dev https://github.com/qilingframework/qiling.git
cd qiling && git submodule update --init --recursive
```

### Pyenv Installation

If you are using pyenv, run the command shown below.

```sh
mv $(dirname $(which python))/python2.7 $(dirname $(which python))/python2.7.bak
pip install .
```

#### Important note on Windows DLLs and registry

Due to distribution restriction, Qiling Framework will not bundle Microsoft Windows DLL files and registry. Please copy respective DLLs and registry from Microsoft Windows System. For Windows 10 usually found in C:\Windows\system32 (64bit dll) and C:\Windows\SysWOW64 (32bits dll) and place them in $rootfs/dlls
Expand Down

0 comments on commit 13f8494

Please sign in to comment.