Open stevenbeeckman opened 9 years ago
Reproduction gist: https://gist.github.com/stevenbeeckman/beffbbd867b93575ac48
Inspecting further: the sudo pip install ipython-sql
step uninstalls ipython
(from apt-get) and installs another ipython
version, which probably breaks a few things.
Same happens when installing ipython-sql
via the git master download.
Hi,
I'm very new to Python, IPython and its Notebook concept, yet also interested in ipython-sql. I'm trying to get it all running inside of Ubuntu/Vagrant on my Mac. I followed [these instructions]() to get
ipython notebook
running. (I guess it's an old Ubuntu 12, just followed Vagrant's instructions.)After I got
ipython notebook
running (I even got 3 notebooks saved :)), I tried to install your%sql
magic by doingsudo pip install ipython-magic
but things probably went not as intented whensqlalchemy
was installed:I don't really care yet about speedups so was happy with the Plain-Python build. I tried to run
ipython notebook --ip=0.0.0.0
again, but got this:OK, next step: installing
jinja2
.I really should get those Python headers installed. But again, I don't really care right now about blazing fast performance. I just want to get it working. Anyway, let's see if I get the notebook server running:
Next up:
sudo apt-get install --upgrade tornado
. Again some whining about no header files, so I finally didsudo apt-get install build-essential python-dev
and ran the tornado upgrade again.Next thing missing:
jsonschema
. Installed that through pip. Ranipython notebook --ip=0.0.0.0
again. got this:I tried to install
terminado
but that didn't solve the lack of having a browser connected. Which seems to me to be a chicken and egg problem.I will also cross-post this issue to the IPython repo as I figure it's more an IPython problem than an ipython-sql thing. It broke however while trying to get ipython-sql running. ;-)
Sorry for the long bug report.