Make sure .bashrc is sourced in current terminal

This commit is contained in:
Antreas Antoniou 2018-09-24 10:42:34 +01:00 committed by GitHub
parent dff23a6362
commit 18a5867bcd
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -46,8 +46,14 @@ Append at the end
```
source /group/teaching/conda/etc/profile.d/conda.sh
```
This should be enough to enable conda and give you access to your packages. Please continue from the 'Creating the Conda environment section' if you have taken this path.
This should be enough to enable conda and give you access to your packages every time to open a terminal. Please continue from the 'Creating the Conda environment section' if you have taken this path.
Also, do not forget to run
```
source ~/.bashrc
```
In your current terminal session to get conda (automatic sourcing of .bashrc happens only when a new terminal is opened).
## 3. Installing Miniconda From Scratch - Only do this step if you have chosen not to do step 2
@ -427,7 +433,7 @@ conda create -n mlp python=3
Activate our created environment:
```
source activate mlp
conda activate mlp
```
Install the dependencies for the course into the new environment: