Note
Previously installed a different version of ScubaGoggles? See Upgrading ScubaGoggles.
To download ScubaGoggles:
- Click here to see the latest release.
- Click scubagoggles-[latest-version].zip to download the release.
- Extract the folder in the zip file.
As of ScubaGoggles v0.3.0, the minimum required Python version to run the tool is 3.10.x
. While it's possible that ScubaGoggles may work with different versions of Python, 3.10 is the version we've tested and ensured works with the versions of the modules listed in ScubaGoggles' dependencies.
The following commands are used to set up a python virtual environment (venv) to install the needed python dependencies. Inside the release or repo folder, open up a terminal and run the following commands based on your OS.
Note
Depending on the Python installation and operating system, it might be necessary to use pip3
and python3
instead of pip
and python
.
pip install virtualenv
python -m venv .venv
.venv\Scripts\activate
pip install virtualenv
virtualenv -p python .venv
source .venv/bin/activate
Users can run the tool via the scuba.py
script as a developer or by installing the scubagoggles
package in a python venv.
Choose either of these next steps to install the needed python dependencies in the venv
.
In the root directory of the release/repo, install the scubagoggles
package and dependencies with the following command.
python -m pip install .
In the root directory of the release/repo, install the the required dependencies with the following command.
pip install -r requirements.txt
Important
Users will need to rerun the activate
script from the OS specific directions above in each new terminal session to reactivate the venv
containing the dependencies.
- Continue to Download the OPA executable
- Return to Documentation Home