Advanced Research Computing
Virtual Visit Request info Apply
MENUMENU
  • About
    • Overview
    • Details
    • Policies
    • FAQs
    • Our Team
    • Testimonials
  • Services
    • Pricing
    • Office Hours
    • Service Requests
      • Request an Account
      • Request Storage
      • Request Classroom Access
      • Request Software
    • Data Portal »
  • Resources
    • Documentation »
    • Workshops
    • Web Apps
      • Doppler (NAU only)
      • Metrics (NAU only)
      • OnDemand
      • XDMod
      • XDMoD Reports
  • Research
    • Current Projects
    • Publications
  • Collaboration
    • CRN
    • External
  • IN
  • ARC
  • Python Packages

Packages in Python

Installing Packages

In order to install packages in Python, the process can be done within a few commands from within the terminal:

# Load anaconda
[abc123 ~]module load anaconda3/<ver>
# Create a conda environment
[abc123 ~]conda create -n myenv
# Activate the conda environment created
[abc123 ~]conda activate myenv
# Once you have activated your environment you will be able to install your packages locally to this environment
(myenv)[abc123 ~]conda install package

Please note, the next time that you want to use the package, you will need use the command “conda activate myenv”. This will load the environment where you installed the package.

For more information on As always, please don’t hesitate to contact us if you need further assistance with Python package installation.