-
-
Notifications
You must be signed in to change notification settings - Fork 1.6k
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
PR: Update conda install command for spyder-kernels 1.x #7610
PR: Update conda install command for spyder-kernels 1.x #7610
Conversation
CONTRIBUTING.md
Outdated
@@ -108,7 +108,7 @@ corresponding `1.x` version of `spyder-kernels`. | |||
This can be done via two methods: installing the correct version via `conda`: | |||
|
|||
```bash | |||
conda install spyder-kernels=1 | |||
conda install -c conda-forge spyder-kernels=1.* |
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.
As I mentioned in the spyder-docs PR, please change this to
conda install -c spyder-ide spyder-kernels=1.*
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.
Yup
README.md
Outdated
so to run the `master` branch (Spyder 4) you need to additionally execute: | ||
|
||
```bash | ||
conda install spyder-kernels=1.* | ||
conda install -c conda-forge spyder-kernels=1.* |
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.
conda-forge
-> spyder-kernels
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.
👍
Again, let's wait until we move the spyder-kernels packages to our channel. |
Thanks! |
Pull Request Checklist
modified the
spyder/defaults
directory, or added new icons/assetsDescription of Changes
Per the discussion in spyder-ide/spyder-docs#69 , this PR corrects the install command for
spyder-kernels
1.x to useconda-forge
, since it isn't available for all platforms on the maindefaults
channel. Also, fixes a few minor but silly typos in the lines near it.