-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add iocontroller package as submodule
Signed-off-by: Roberto Tassone <[email protected]>
- Loading branch information
1 parent
c481f75
commit 549be5a
Showing
3 changed files
with
8 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
[submodule "iocontroller"] | ||
path = iocontroller | ||
url = [email protected]:tassoneroberto/iocontroller.git |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -43,17 +43,19 @@ There are currently three functions available: | |
Clone the module, create a virtual environment and install it: | ||
|
||
```powershell | ||
git clone [email protected]:tassoneroberto/py7dtd.git | ||
git clone --recurse-submodules [email protected]:tassoneroberto/py7dtd.git | ||
cd py7dtd | ||
py -3.10 -m venv venv | ||
.\venv\Scripts\Activate.ps1 | ||
py -m pip install iocontroller | ||
py -m pip install .[ai] | ||
ltt install torch torchvision | ||
``` | ||
|
||
Note: if you are not interested in "entities detection" or "aimbot" then you can omit `[ai]` from the above command and the `ltt install torch torchvision` command: | ||
|
||
```powershell | ||
py -m pip install iocontroller | ||
py -m pip install . | ||
``` | ||
|
||
|
@@ -62,6 +64,7 @@ py -m pip install . | |
To install the package in edit mode (for developers) specify `-e`: | ||
|
||
```powershell | ||
py -m pip install -e iocontroller | ||
py -m pip install -e .[ai] | ||
ltt install torch torchvision | ||
``` | ||
|
Submodule iocontroller
added at
1bb39f