Overview
The article explains a workaround for when Shell Plus isn’t autocompleting for more options when using the tab
Procedure
SSH into appliance
start shell_plus with
/opt/cloudbolt/manage.py shell_plus
enter the following:
import IPython ipy = IPython.get_ipython() get_ipython().Completer.use_jedi = False
If needed, you can add python code to run when starting shell_plus with the following:
ssh into your appliance
adds a python file to the directory
/root/.ipython/profile_default/startup/
file must be preceded by two numbers and a hyphen (00-test.py, 01-abc.py, 02-hello.py, etc)
enter the above code into the python file and save, this should run whenever you start shell_plus
0 Comments