安装后pip install jupyter,终端仍无法找到jupyter notebook.
Ubuntu简单地说command not found.与之相似ipython.没有pip正确安装或什么?Ubuntu如何知道在哪里查找安装的可执行文件pip?
我在Unix上运行Python 2.6,当我运行交互式提示符(SQLite应该是预装的)时,我得到:
[root@idev htdocs]# python
Python 2.6 (r26:66714, Oct 23 2008, 16:25:34)
[GCC 3.2.2 20030222 (Red Hat Linux 3.2.2-5)] on linux2
Type "help", "copyright", "credits" or "license" for more information.
>>> import sqlite
Traceback (most recent call last):
File "<stdin>", line 1, in <module>
ImportError: No module named sqlite
>>>
Run Code Online (Sandbox Code Playgroud)
我该如何解决这个问题?