Skip to content
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

Update installation docs for prerelease #254

Merged
merged 1 commit into from
Mar 12, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion docs/requirements.txt
Original file line number Diff line number Diff line change
@@ -1,8 +1,9 @@
PyEnchant>=3.3.0rc1
sphinx_rtd_theme>=0.5.1
sphinxcontrib-spelling==8.0.0
-e ./src/core
-e ./src/zos_console
-e ./src/zos_files
-e ./src/zos_jobs
-e ./src/zos_tso
-e ./src/zosmf
-e ./src/zosmf
2 changes: 1 addition & 1 deletion docs/source/usage/examples.rst
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ Create a dictionary to handle communication with the plug-in:
from zowe.zos_console_for_zowe_sdk import Console
profile = {
"host": "<host address>",
"port" : 443 , # Include the port if different from the default (443)
"port": 443, # Include the port if different from the default (443)
"user": "<user>",
"password": "<password>",
}
Expand Down
6 changes: 2 additions & 4 deletions docs/source/usage/installation.rst
Original file line number Diff line number Diff line change
Expand Up @@ -15,14 +15,12 @@ To install all Zowe SDK packages using pip:

.. code-block::

pip install zowe
pip install -U --pre zowe

To install only a subpackage using pip:

.. code-block::

pip install zowe.<subpackage>_for_zowe_sdk
pip install -U --pre zowe.<subpackage>_for_zowe_sdk

To see all available sub-packages check the :doc:`../packages/packages` section.


Loading