### Install abqpy using pip Source: https://github.com/zy111x/abqpy/blob/2024/docs/source/getting_started.md Installs the abqpy package using pip. It supports installing specific versions and the Jupyter integration. Ensure Python 3.7+ and Abaqus 2016+ are installed. ```shell pip install -U abqpy==2024.* ``` ```shell pip install -U abqpy2024 ``` ```shell pip install git+https://github.com/haiiliin/abqpy@2024 ``` ```shell pip install -U abqpy[jupyter]==2024.* pip install -U abqpy2024[jupyter] pip install ipynbname nbconvert ``` -------------------------------- ### Execute Abaqus Script using abqpy CLI Source: https://github.com/zy111x/abqpy/blob/2024/docs/source/getting_started.md The abqpy command provides a convenient way to run Abaqus scripts, allowing for customization of the Python launch command. This is an alternative to using the 'abaqus' command directly. ```sh [python -m] abqpy cae script.py ``` -------------------------------- ### Execute Abaqus Python scripts Source: https://github.com/zy111x/abqpy/blob/2024/docs/source/getting_started.md Demonstrates how to execute Python scripts with Abaqus using the command line. This allows for running Abaqus models, jobs, and output extraction directly from a script without opening the Abaqus/CAE GUI. ```shell abaqus cae \ [database=database-file] \ [replay=replay-file] \ [recover=journal-file] \ [startup=startup-file] \ [script=script-file] \ [noGUI=noGUI-file] \ [noenvstartup] \ [noSavedOptions] \ [noSavedGuiPrefs] \ [noStartupDialog] \ [custom=script-file] \ [guiTester=GUI-script] \ [guiRecord] \ [guiNoRecord] ``` -------------------------------- ### Fetch Abaqus Example Data Source: https://github.com/zy111x/abqpy/blob/2024/docs/source/user/examples/cantilever.md This command retrieves the necessary output database for the 'beamExample' job, which is then read by the analysis scripts. Ensure you have Abaqus installed and configured in your environment to run this command. ```shell abaqus fetch job=beamExample ``` -------------------------------- ### Run Abaqus Script with abaqus python Source: https://github.com/zy111x/abqpy/blob/2024/docs/source/getting_started.md This command executes a Python script using the Abaqus Python interpreter. It's typically used when the script only requires the Abaqus Python interpreter and not the full Abaqus/CAE kernel. ```sh abaqus python script.py ``` -------------------------------- ### Embed Utterances Comments with JavaScript Source: https://github.com/zy111x/abqpy/blob/2024/docs/source/getting_started.md This snippet embeds the Utterances comments system using a script tag. It requires specifying the GitHub repository, issue term strategy, and theme. The script is loaded asynchronously. ```html