diff --git a/.idea/misc.xml b/.idea/misc.xml index 14c57c0..567a480 100644 --- a/.idea/misc.xml +++ b/.idea/misc.xml @@ -3,5 +3,5 @@ - + \ No newline at end of file diff --git a/.idea/vmker.iml b/.idea/vmker.iml index 8ed40ab..70c00d0 100644 --- a/.idea/vmker.iml +++ b/.idea/vmker.iml @@ -4,8 +4,9 @@ + - + \ No newline at end of file diff --git a/README.md b/README.md index f1f0e92..177e676 100644 --- a/README.md +++ b/README.md @@ -1,12 +1,30 @@ # vmker -## Установка +## Usage -Делал на debian12 +## Install -#### Установка библиотек +Download binaries from: WIP + +## Build by-self + +#### Installing python and creating venv ```shell sudo apt update -sudo apt install python3 python3-pip -pip install pyvmomi netmiko paramiko loguru easydict ruamel.yaml +sudo apt install python3 python3-pip python3-venv +git clone https://git.anidev.ru/SantaSpeen/vmker.git +cd vmker +python3 -m venv venv +source venv/bin/acvtivate ``` + +#### Installing libraries and build +```shell +python -m pip install -r requirements.txt +python -m pip install pyinstaller +pyinstaller --noconfirm --onefile --console --name "vmkey" "./src/main.py" +# cp dist/vmkey /bin/vmkey +``` + +* Good night $) +