mirror of
https://github.com/moloch--/sliver-py
synced 2026-06-08 16:08:05 +00:00
8 lines
167 B
Bash
Executable File
8 lines
167 B
Bash
Executable File
#!/bin/bash
|
|
|
|
python3 -m pip install virtualenv
|
|
virtualenv venv
|
|
source venv/bin/activate
|
|
python3 -m pip install --upgrade pip
|
|
python -m pip install -r requirements.txt
|