spyder-ide / spyder-docs

Documentation for Spyder, the Scientific Python Development Environment
https://docs.spyder-ide.org
MIT License
33 stars 283 forks source link

Update channel in install commands from spyder-ide to conda-forge #344

Closed P-Tillmann closed 1 year ago

P-Tillmann commented 1 year ago

Description of Changes

Update channels for install instructions of spyder plugins

Issue(s) Resolved

Resolves GHI343

P-Tillmann commented 1 year ago

Hi @CAM-Gerlach, thanks for pointing out the FAQ. I updated it there as well.

CAM-Gerlach commented 1 year ago

Also, just FYI—it seems you made this PR from the master branch of your fork instead of a feature branch. To avoid issues in the future, ensure you always make your changes in a new feature branch (as our Contributing Guide details), and to fix the current problem, either delete your fork and local clone (and recreate it if desired), or run the following commands locally (assuming origin is your fork and upstream is this repo, per standard convention and our contributing guide:

git switch master
git fetch --all
git reset --hard upstream/master
git push --force origin master