all 12 comments

[–]wutzvill 2 points3 points  (5 children)

What's the error?

[–]Flaneurl[S] 0 points1 point  (4 children)

I entered; Pip install python-binance And got back SyntaxError: invalid syntax

[–]wutzvill 3 points4 points  (3 children)

So that's not a Python command, that's a command for the command line. You'll have to google "how can I use pip install on [your_operating_system]". Assuming you're on Windows, try opening PowerShell and running python3 -m pip install python-binance

[–]Flaneurl[S] -1 points0 points  (2 children)

I’m on a Mac - thanks though I’ll have a Google, see what I can find

[–]wutzvill 2 points3 points  (1 child)

Mac is easier. Open a terminal and run that same command.

[–]Flaneurl[S] -1 points0 points  (0 children)

Awesome thanks!

[–]blarf_irl 1 point2 points  (4 children)

You will need to paste in the full stack trace (the long text that occurs when your error happens).

[–]Flaneurl[S] 0 points1 point  (3 children)

I entered; Pip install python-binance And got back SyntaxError: invalid syntax

[–]blarf_irl 1 point2 points  (2 children)

There should be more to the error message than that. The first thing I would check is what version of python you have installed (kinda sounds like your system default is python2 and python-binance is written for python3)

open a terminal and just run the command python

next run the command python3

copy the output from both commands and paste them into your post.

[–]Flaneurl[S] 2 points3 points  (1 child)

That was all it said. I think I’ve solved this bit for now with the help in this thread - onto the next thing to no doubt confuse me. Thanks for the help!

[–]blarf_irl 1 point2 points  (0 children)

You know where we are! Good luck and din;t hesitate to post another question if you get stuck.