-
Notifications
You must be signed in to change notification settings - Fork 41
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
Update 2017-11-11-environments.md #48
Conversation
Why the date 2017-11-11? Otherwise looks fine to me. |
... or is this an alternative for PR #47 ? |
This is a PR to the PR. I didn't want to directly edit Mac's post this much without his approval |
Makes the post appear at the top on my local builds of the website. And it's far enough in the future that I'm likely seeing that I need to change the date. If you know another good way to prepare blog posts and render them as a preview I'm all ears. |
@@ -1,62 +1,75 @@ | |||
--- | |||
layout: post | |||
title: Working with different package versions | |||
title: Managing software versioning using Conda environments |
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.
I wouldn't stick to just conda here. For some people that would mean switching their complete python stack (and most scientists I know are averse to switching working systems). The idea behind the post is to show people how they can use newer version of MDAnalysis while still keeping their old scripts running.
I thought you can add conda on top of an existing stack though? Ie the
default environment will be what they previously had.
…On Wed, 29 Mar 2017, 9:23 a.m. Max Linke, ***@***.***> wrote:
***@***.**** commented on this pull request.
------------------------------
In _posts/2017-11-11-environments.md
<#48 (comment)>
:
> @@ -1,62 +1,75 @@
---
layout: post
-title: Working with different package versions
+title: Managing software versioning using Conda environments
I wouldn't stick to just conda here. For some people that would mean
switching their complete python stack (and most scientists I know are
averse to switching working systems). The idea behind the post is to show
people how they can use newer version of MDAnalysis while still keeping
their old scripts running.
—
You are receiving this because you authored the thread.
Reply to this email directly, view it on GitHub
<#48 (review)>,
or mute the thread
<https://github.com/notifications/unsubscribe-auth/AI0jB0SQiw2WaSmBCKka1867_5bw-qqQks5rqhTugaJpZM4MrcwS>
.
|
No you can add conda on top. You would switch completely. If you install conda and switch to it you will change your global python installation and keep everything that is installed in |
Perhaps jekyll drafts works for you: https://jekyllrb.com/docs/drafts/ |
What works for me is to use function anaconda3 ()
{
export PATH=${HOME}/anaconda3/bin:$PATH;
echo "Using anaconda3..."
} |
No description provided.