0

On Ubuntu, using Anaconda (miniconda3), when starting IPython I get the warning "UserWarning: IPython History requires SQLite, your history will not be saved". And as it says, the history doesn't work.

I have read this question but it's old, it's for macOS, and it's too complicated.

Is there a simple way to fix the problem and get the history working?


$ conda list ipython
# packages in environment at /home/j/miniconda3:
#
# Name                    Version                   Build  Channel
ipython                   7.13.0           py37h5ca1d4c_0  
ipython_genutils          0.2.0                    py37_0  

$ conda list sqlite
# packages in environment at /home/j/miniconda3:
#
# Name                    Version                   Build  Channel
sqlite                    3.31.1               h62c20be_1  
Jonatan Öström
  • 2,428
  • 1
  • 16
  • 27

1 Answers1

1

I found a very easy solution:

conda install sqlite
conda uninstall ipython
conda install ipython 
Jonatan Öström
  • 2,428
  • 1
  • 16
  • 27