-
Notifications
You must be signed in to change notification settings - Fork 59
Added the Manual Installation deadline[gui] section #943
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
base: mainline
Are you sure you want to change the base?
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -30,6 +30,7 @@ Notable features include: | |
|
|
||
| The AWS Deadline Cloud client can be installed by the standard python packaging mechanisms: | ||
| ```sh | ||
|
|
||
| $ pip install deadline | ||
| ``` | ||
|
|
||
|
|
@@ -71,6 +72,43 @@ $ cat out.txt | |
| An example usage is to create a shortcut called "Deadline Settings" on your desktop that runs `C:\path\to\deadlinew.exe config gui`. | ||
| Opening the shortcut will show the Deadline Settings dialog without a terminal window behind it. | ||
|
|
||
| ## Manual Installation Deadline[GUI] Instructions | ||
| **Use Case:** This allows users to install Deadline GUI components on machines without internet access by downloading packages on a connected machine and transferring them. | ||
|
|
||
| Prerequisites: Ensure the Deadline Client is installed on a machine with internet access. | ||
|
|
||
| ### Step 1: Download the packages | ||
|
|
||
| Use the Python version bundled with the installer to download the Deadline GUI components: | ||
| ```bash | ||
| path/to/python -m pip download -d path/to/download/directory deadline[gui]=={DEADLINE_CLIENT_VERSION} | ||
|
Contributor
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. One nit - I think we need to mention the same python package is needed on both machines?
Author
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. I believe the steps helps with the same, with step to step instructions to follow by the customer. |
||
| ``` | ||
|
|
||
| ### Step 2: Verify the download | ||
|
|
||
| Check that all packages were downloaded successfully: | ||
| ```bash | ||
| ls path/to/download/directory | ||
| # Should show multiple .whl and .tar.gz files | ||
| ``` | ||
|
|
||
| ### Step 3: Transfer the packages | ||
|
|
||
| Copy the entire download directory to your offline machine using USB drive, network share, or other transfer method. | ||
|
|
||
| ### Step 4: Install the packages | ||
|
|
||
| Install the packages using the downloaded files: | ||
| ```bash | ||
| path/to/python -m pip install --no-index --find-links path/to/download/directory --target path/to/target/python/modules deadline[gui] | ||
| ``` | ||
|
|
||
| **Arguments explained:** | ||
| - `--no-index`: Don't use PyPI, only use local files | ||
| - `--find-links`: Directory containing the downloaded packages | ||
| - `--target`: Where to install the packages | ||
|
|
||
|
|
||
| ## Job-related Files | ||
| For job-related files and data, AWS Deadline Cloud supports either transferring files to AWS using job attachments or reading files from network storage that is shared between both your local workstation and your farm. | ||
|
|
||
|
|
||
Uh oh!
There was an error while loading. Please reload this page.