| ... | @@ -2,9 +2,19 @@ Creating a new ipython startup profile |
... | @@ -2,9 +2,19 @@ Creating a new ipython startup profile |
|
|
```
|
|
```
|
|
|
ipython profile create <profile_name>
|
|
ipython profile create <profile_name>
|
|
|
```
|
|
```
|
|
|
Warning: profiles are created with _profile__ as a prefix, so don’t call it _profile_something_ or it will ended up called _profile_profile_something_
|
|
Warning 1: profiles are created with _profile__ as a prefix, so don’t call it _profile_something_ or it will ended up called _profile_profile_something_
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Warning 2: if bash returns:
|
|
|
|
```
|
|
|
|
bash: ipython: command not found
|
|
|
|
```
|
|
|
|
use:
|
|
|
|
```
|
|
|
|
export PATH="$PATH:~/.local/bin/"
|
|
|
|
ipython profile create <profile_name>
|
|
|
|
```
|
|
|
|
|
|
|
|
|
|
|
|
Running ipython from a specific profile
|
|
Running ipython from a specific profile
|
|
|
```
|
|
```
|
| ... | | ... | |