Skip to content

Commit

Permalink
Merge pull request #9 from Badgerworks-Brewery/pixeebot/drip-2024-11-…
Browse files Browse the repository at this point in the history
…26-pixee-python/sandbox-process-creation

Sandbox Process Creation
  • Loading branch information
CCIGAMES authored Nov 27, 2024
2 parents 5c04a51 + f5759f1 commit 4e652e3
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 1 deletion.
3 changes: 2 additions & 1 deletion NXDump/host/install_deps.py
Original file line number Diff line number Diff line change
Expand Up @@ -8,10 +8,11 @@
from os.path import dirname, join
from sys import executable
from platform import system
from security import safe_command

root_dir = dirname(__file__)

requirements_file = ('requirements-win32.txt' if system() == 'Windows' else 'requirements.txt')

run([executable, '-m', 'pip', 'install', '-r', join(root_dir, requirements_file)])
safe_command.run(run, [executable, '-m', 'pip', 'install', '-r', join(root_dir, requirements_file)])
input('Press enter to close')
1 change: 1 addition & 0 deletions NXDump/host/requirements.txt
Original file line number Diff line number Diff line change
@@ -1,2 +1,3 @@
tqdm>=4.59.0
pyusb>=1.1.1
security==1.3.1

0 comments on commit 4e652e3

Please sign in to comment.