Python
Python is a high-level, interpreted, general-purpose programming language emphasizing code readability, simplicity, and developer productivity.
Its elegant syntax, dynamic typing, and extensive standard library, combined with a vast ecosystem of mature third-party packages, make it the leading choice for web development, data science, machine learning, automation, scientific computing, DevOps, and rapid application prototyping across industries.
How to Customize Standard Python Environment?
Section titled “How to Customize Standard Python Environment?”Currently the standard Python environment allow users to install extra packages by running ‘’”pip install <package>” command.
To create custom environment, run below command in the SSH terminal (CLI), for tutorial in accessing CLI, please refer to Shell Access and Useful Command
# Load python module (use Python 3.10 environment as example)$ module load python/3.10# Install extra packages$ python -m pip install <packages># List all installed packages$ pip list# Purge module$ module purgeAll new installed extra package will be located in /home/$USER/.local/
How to Reset Customized Python Environment as Default?
Section titled “How to Reset Customized Python Environment as Default?”To reset the customized standard python environment as default, run below command in the SSH terminal (CLI), for tutorial in accessing CLI, please refer to Shell Access and Useful Command
# Load python module$ module load python/<version>
# Reset user’s python environment$ pip freeze | xargs pip uninstall -y
# Purge module$ module purgeFor more information about Python, please refer to: Python Document Site