Reputation: 9
I ran the following command in cmd pip install python-binance
and I got two Errors
ERROR: Command errored out with exit status 1: [WinError 3] The system cannot find the path specified: 'C:\\Program Files (x86)\\Microsoft Visual Studio 14.0\\VC\\PlatformSDK\\lib'
ERROR: Command errored out with exit status 1: Check the logs for full command output.
I have absolutely NO IDEA how to fix this, I didn't find any solutions online, I'm new to programing so I really hope someone finds this and helps me, because otherwise, I'm stuck... Thanks in advace.
Upvotes: 0
Views: 6074
Reputation: 8405
The error is that the installer is unable to find a Visual Studio 14 installation, which has required Visual C++ build tools. When working with a new package, you should read the documentation about installation and requirements. It will help you resolve these kinds of issues.
From the docs: https://python-binance.readthedocs.io/en/latest/overview.html#installation
Windows
If you see errors building Twisted indication Microsoft Visual C++ is required you may need to install the Visual C++ Build Tools refer to the Python Wiki on Widows Compilers for your relevant version.
Upvotes: 1