-
Notifications
You must be signed in to change notification settings - Fork 10
Iss285 fix condaforge bd #286
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
base: main
Are you sure you want to change the base?
Conversation
Clarified the configuration files for Conda channels and updated the section title.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Pull Request Overview
This PR adds a troubleshooting section to the Conda environment documentation to help users resolve package installation issues related to unsupported Anaconda channels on the cluster.
- Adds a new "Troubleshooting: Unable to Install Packages" section
- Documents the issue of Anaconda channel not being supported on the cluster
- Provides steps to verify and fix channel configuration by switching to conda-forge
💡 Add Copilot custom instructions for smarter, more guided reviews. Learn how to get started.
|
|
||
| ```bash | ||
| conda config --remove channels anaconda | ||
| conda config --add default_channels conda-forge |
Copilot
AI
Oct 29, 2025
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
The command conda config --add default_channels is incorrect. The correct parameter is --add channels (without 'default_'). The command should be conda config --add channels conda-forge to add conda-forge to the channels list.
| conda config --add default_channels conda-forge | |
| conda config --add channels conda-forge |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
copilot suggestion is NOT correct :)
Naeemkh
left a comment
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
@dmbala, please address the merge conflict. Thanks.
…mputing-handbook into iss285_fix_condaforge_bd
…Institute/kempner-computing-handbook into iss285_fix_condaforge_bd
Description
Checklist
Before submitting this PR, please confirm that you have completed the following:
Related Issues
Notes for Reviewers