1

我有一个带有 Ubuntu 18.04.1 的虚拟机。

python3 --version3.6.5 说。

我安装 pip 没有任何失败(似乎)。然后我尝试安装 steem-python

pip install steem

但我失败了,看起来像:

bla bla bla

...

^~~~~~~~~~~~~~~

compilation terminated.

  error: command 'x86_64-linux-gnu-gcc' failed with exit status 1

  ----------------------------------------
  Failed building wheel for scrypt

Running setup.py clean for scrypt

...

^~~~~~~~~~~~~~~
    compilation terminated.
    error: command 'x86_64-linux-gnu-gcc' failed with exit status 1

    ----------------------------------------
Command "/usr/bin/python -u -c "import setuptools, tokenize;__file__='/tmp/pip-build-0iqf8q/scrypt/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-1dMD0Y-record/install-record.txt --single-version-externally-managed --compile --user --prefix=" failed with error code 1 in /tmp/pip-build-0iqf8q/scrypt/

现在我没有想法了。有人可以帮我解决这个问题吗?我该如何安装它?

我的目标是与 steem 区块链交互。

4

1 回答 1

0

您将需要在 ubuntu 上安装 python3-dev(除了 unixodbc-dev)并且它确实有效。

请确保您已安装这些:

$ sudo apt-get install python3-dev

$ sudo apt-get 安装 unixodbc-dev

仅供参考:Python 2.x 用户,将需要 python-dev 代替。

于 2018-08-06T19:03:07.387 回答