Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在使用 MacOS 10.14.6 和 python 3.7.4
我的个人 python 代码运行良好。我已经使用 pip 安装了额外的库:
pip install ccxt
然后下面的代码在 Windows 上运行良好。
import ccxt bitmex = ccxt.bitmex() print(bitmex.fetch_ticker('BTC/USD'))
但是在 MacOS 上,发生了错误。谁能帮我?
我已经解决了这个问题3天。在 mac 上,必须为 ccxt 安装 python3。
ruby -e "$(curl -fsSkL raw.github.com/mxcl/homebrew/go)" brew install python3 pip3 install ccxt
上述命令运行后,错误修复。