English translation
Managing Python Packages with Anaconda Navigator
AI Article Decision Snapshot
Turn the lesson into workflow, model, budget, and security checks before choosing tools.
Use this quick snapshot before leaving the article. It keeps the next search tied to practical AI software, model/API, cost, privacy, and implementation questions.
Workflow fit
Identify the real job behind the article: coding, research, document review, support, analytics, content, or internal automation.
Model or tool decision
Decide whether the next step is a software shortlist, an AI tool comparison, an API platform choice, or a model benchmark.
Budget and usage signal
Estimate seats, API calls, prompt volume, retries, review time, and fallback work before assuming the workflow is cheap.
Security and privacy review
Check whether source code, customer data, private documents, prompts, logs, or embeddings will enter the AI workflow.
In the previous article, we covered how to create and manage virtual environments and their dependencies. Next, we’ll focus on managing Python packages using Anaconda Navigator, a graphical user interface (GUI) tool. This approach is not only intuitive but also ideal for users less familiar with the command line.
What Is Anaconda Navigator?
Anaconda Navigator is a graphical user interface provided by Anaconda that simplifies package and environment management. Through Anaconda Navigator, users can perform many common tasks—including installing, updating, and removing packages, as well as creating and managing environments—directly from a visual interface.
Launching Anaconda Navigator
First, launch Anaconda Navigator. Locate and click the Anaconda shortcut on your computer. If you haven’t installed Anaconda yet, download and install it from the Anaconda website.
Once launched, the Anaconda Navigator main window will appear on screen, typically displaying several navigation tabs such as Home, Environments, and Learning.
Managing Python Packages
The primary steps for managing Python packages in Anaconda Navigator are as follows:
1. Select an Environment
Before managing packages, ensure you’ve selected the correct virtual environment. Navigate to the Environments tab to locate and select the environment you wish to manage.
For example, if you created a virtual environment named myenv in the previous article, you’ll find it in the Environments list—simply click on it to activate it.
2. Search for and Install Packages
After selecting an environment, switch to the Home tab. On the right-hand side, you’ll see an Install button. Clicking it opens Anaconda’s package manager, where you can browse and install packages.
Enter the package name (e.g., numpy) into the search box, then click the Apply button next to it. For instance:
- Type
numpy - Click
Apply
This installs the package along with its required dependencies into the currently selected environment.
3. Update and Uninstall Packages
To update an already-installed package, go to the Environments tab, select the target environment, and click the Update button next to the desired package. Similarly, uninstalling a package is straightforward: select the package and click Remove.
4. View Installed Packages
In the Environments tab, you can view all packages installed in the current environment—including their version numbers. For example, if you installed pandas, it will appear in the package list alongside its version number.
Practical Example
Suppose you want to install the scikit-learn package into an environment named data_analysis, to support machine learning learning and practice. Follow these steps:
- Open Anaconda Navigator, and navigate to the
Environmentstab. - Locate and select the
data_analysisenvironment. - In the search box on the right, type
scikit-learn, then locate and check the package. - Click the
Applybutton at the bottom to confirm installation.
Upon completion, scikit-learn will be installed in the data_analysis environment and ready for use in your Python scripts.
Summary
In this tutorial, we walked through how to manage Python packages using Anaconda Navigator. With its intuitive GUI, you can easily select environments and perform essential package operations—installation, updating, and removal—without relying on the command line.
In upcoming articles, we’ll explore more advanced features of Anaconda Navigator for environment and package management—further enhancing your development and data analysis capabilities.
If you encounter any issues or need additional assistance while using Anaconda, consult the official documentation or join community discussions—you’re likely to discover helpful solutions and fresh inspiration.
Apply This Lesson
Turn this article into AI software, model, API, and security decisions.
English Article FAQ
Use this article as evidence before choosing AI tools
How should I use this AI Tutorials article?
Use it as the implementation or learning layer, then connect the idea to AI software buyer guides, tool comparisons, benchmarks, API choices, and security checks before making a production decision.
Is this English article different from the Chinese original?
The English edition is localized for global AI readers while preserving the original diagrams, screenshots, prompts, code examples, and source context from the Chinese article.
What should I read after Managing Python Packages with Anaconda Navigator?
Continue with AI Software Buyer Guides, AI Tools Workbench, Best AI Coding Agents, AI Model Benchmarks, OpenAI vs Anthropic API, or LLM Security Tools depending on the decision you need to make.
Can this article alone choose an AI product or model?
No. Treat the article as evidence and context, then validate fit with pricing, privacy requirements, integration effort, benchmark results, workflow tests, and fallback planning.
Continue