在Jupyter中安装软件时出错

时间:2018-01-19 21:57:20

标签: jupyter-notebook

我正在运行jupyter笔记本,但在尝试安装软件时使用:

!pip install ipython-sql

它会返回此错误:

copying build/lib.linux-x86_64-2.7/prettytable.py -> /usr/local/lib/python2.7/dist-packages
    error: [Errno 13] Permission denied: '/usr/local/lib/python2.7/dist-packages/prettytable.py'

以下,红色字母:

Command "/usr/bin/python -u -c "import setuptools, tokenize;__file__='/tmp/pip-build-6I8SLA/prettytable/setup.py';f=getattr(tokenize, 'open', open)(__file__);code=f.read().replace('\r\n', '\n');f.close();exec(compile(code, __file__, 'exec'))" install --record /tmp/pip-nL3KsL-record/install-record.txt --single-version-externally-managed --compile" failed with error code 1 in /tmp/pip-build-6I8SLA/prettytable/

这就是我所拥有的所有信息。知道怎么解决吗?

1 个答案:

答案 0 :(得分:0)

我重新创建了你的问题并使用以下方法解决了它:

!pip install ipython-sql --user

我使用Linux Mint和Python 3.4。使用--user标志将库存储在您的主目录中,在我的情况下,在〜/ .local / lib / python3.4 / site-packages下。