これは存在するnoobestの質問ですが、私はだと思います。これは私のパスに問題がありますか?ここでPythonパッケージをpipでインストールしましたが、使用するためにインポートできません
python import binance
、あなたがpython
コマンドを使用して、Pythonインタプリタを起動しようとしている。
Vincents-MacBook-Pro:~ vincentlevinger$ pip install binance
Requirement already satisfied: binance in /Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/site-packages
Vincents-MacBook-Pro:~ vincentlevinger$ python import binance
/Library/Frameworks/Python.framework/Versions/2.7/Resources/Python.app/Contents/MacOS/Python: can't open file 'import': [Errno 2] No such file or directory
Vincents-MacBook-Pro:~ vincentlevinger$
これはPythonでの読み込み方法ではなく、まず '' python''を起動してから '' import binance''を試してみてください。 –