$ conda info -e
$ conda create -n [name] python=3.6
or
$ sudo conda create -n [name] python=3.6
$ source activate [name]
$ conda deactivate
$ conda remove -n [name] --all
or
$ sudo conda remove -n [name] --all
$ conda create --name [new name] --clone [old name]
$ conda remove --name [old name] --all
In OSX, back-space doesn't work, but typed character vanished
On OSX, the cursor moves to the right without disappearing in the backspace for some reason. However, the characters themselves have disappeared.
$ conda install readline==6.2
** anaconda3 / bin / python ** should change this when changing the path of the conda directory
Recommended Posts