Skip to content
This repository was archived by the owner on Dec 6, 2021. It is now read-only.
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
42 changes: 42 additions & 0 deletions doc/configure_via_anaconda.md
Original file line number Diff line number Diff line change
Expand Up @@ -108,3 +108,45 @@ conda env remove -n RoboND
```

---

### A tip for Linux Users!
Instead of always writing:

```sh
// activation
$ source activate RoboND

//deactivation
$ source deactivate
```

You can navigate to home directory in shell using:

```sh
$ cd
```

Then use an editor to add an `alias` to the `.bashrc` file and shorten the activation line to whatever you want.
For example:

```sh
$ sudo nano .bashrc

~ navigate with arrow keys all the way to bottom of the file and type:

> # my aliases
> alias robond='source activate RoboND'
> alias killconda='source deactivate'

~ use `CTRL + X` followed by 'y' to save and exit. Restart the terminal to use the changes.

```
now to activate and deactivate all you need to write are:

```sh
// Activate
$ robond

// Deactivate
$ killconda
```