pip install ccxt 如果你是使用的Anaconda环境,并且遇到了安装问题,可以尝试先安装conda版本的pip,然后使用它来安装ccxt: bash conda install pip pip install ccxt 重新运行代码: 安装完成后,重新运行你之前遇到错误的代码。如果一切设置正确,那么这次应该不会再出现“ModuleNotFoundError”了。 检查Python环境: ...
OS: Windows 10 Programming Language version: Python 3.10.1 CCXTPRO version: 1.1.65 #!/usr/bin/env python import asyncio import websockets import ccxtpro CONNECTIONS = set() async def register(websocket): CONNECTIONS.add(websocket) try: a...
File "/home/ec2-user/.local/lib/python3.7/site-packages/ccxt/static_dependencies/ethereum/typing/__init__.py", line 1, in <module> from importlib.metadata import ( ModuleNotFoundError: No module named 'importlib.metadata' So.. Try install importlib.metadata... pip...
Step 2: Describe your environment Ubuntu 18.04 Python 3.7.4 pip freeze | grep ccxt doesn't return anything, although it seems to have been installed in the dependencies. Develop 8c1efec Command line argument: 'python3 -m freqtrade -c con...
python3.6/dist-packages/eth_abi/encoding.pyin<module>()39ceil32,40)--->41frometh_abi.utils.paddingimport(42fpad,43zpad,/usr/local/lib/python3.6/dist-packages/eth_abi/utils/padding.pyin<module>()--->1frometh_utils.toolzimport(2curry,3)45ModuleNotFoundError:Nomodulenamed'eth_utils.toolz'...
Tried to run the mean_reversion_simple exercise and I was given the "ImportError: No module named talib". As a solution I tried searching on the web for how to install ta-lib and adapted it to work for the environment based on the code that I found in the instructions. I ran the fo...