Re: Fwd: Syntax error

2018-02-03 Thread Cameron Simpson

On 03Feb2018 14:10, Kevin Doney  wrote:

*pip3 install --upgrade tensorflow-gpu*

When I try the above command I get
SyntaxError: invalid syntax

Please help.


It looks like you typed that command to the Python prompt, based on the 
distinctively Python "SyntaxError" response.


That command is supposed to be typed to a shell prompt. It is not Python code, 
it is a command line to install a package.


But as with the other responders, it is always helpful if you post the entire 
text, including the prompt you're using (which with show whether this was 
Python or a command shell etc) and if you've got a Python error, the full 
traceback. I suspect some people think this is noisy verbiage that would make 
their question hard to read, but it is usually vital context for the error 
message.


Cheers,
Cameron Simpson  (formerly c...@zip.com.au)
--
https://mail.python.org/mailman/listinfo/python-list


Re: Fwd: Syntax error

2018-02-03 Thread Terry Reedy

On 2/3/2018 3:38 PM, bob gailer wrote:

On 2/3/2018 2:40 PM, Terry Reedy wrote:

On 2/3/2018 2:10 PM, Kevin Doney wrote:

Hi.

*pip3 install --upgrade tensorflow-gpu*

When I try the above command I get
SyntaxError: invalid syntax


Please help.


This group helps those who help the group -- by asking questions with 
sufficient information to answer.  Post the ENTIRE trackback.

It also helps us to know:
operating system (e.g., windows 10)
what does "when I try" mean? (e.g. at a windows command prompt I entered 
...)

What the *'s are for
best is to copy the entire session and paste it into your email. Example


I entirely agree.


Microsoft Windows [Version 10.0.16299.192]
(c) 2017 Microsoft Corporation. All rights reserved.

C:\Users\bgailer>pip install foo
Collecting foo
   Could not find a version that satisfies the requirement foo (from 
versions: )

No matching distribution found for foo

We could presume in your case that you tried to enter your pip command 
in a python interactive session.


This is a good guess, and I hope it is correct, because the alternative 
of a SyntaxError in some execution path in pip or dependency or python 
stdlib module or package being installed is worse.



For example:

C:\Users\bgailer>python
Python 3.3.5 (v3.3.5:62cf4e77f785, Mar  9 2014, 10:35:05) [MSC v.1600 64 
bit (AMD64)] on win32

Type "help", "copyright", "credits" or "license" for more information.
 >>> pip install foo
   File "", line 1
     pip install foo
   ^
SyntaxError: invalid syntax
 >>>

Why did you get that response? Because pip is not a python statement 
(python does not have commands); it is an executable program. So you 
need to use a command prompt or terminal.






--
Terry Jan Reedy


--
https://mail.python.org/mailman/listinfo/python-list


Re: Fwd: Syntax error

2018-02-03 Thread bob gailer

On 2/3/2018 2:40 PM, Terry Reedy wrote:

On 2/3/2018 2:10 PM, Kevin Doney wrote:

Hi.

*pip3 install --upgrade tensorflow-gpu*

When I try the above command I get
SyntaxError: invalid syntax


Please help.


This group helps those who help the group -- by asking questions with 
sufficient information to answer.  Post the ENTIRE trackback.

It also helps us to know:
operating system (e.g., windows 10)
what does "when I try" mean? (e.g. at a windows command prompt I entered 
...)

What the *'s are for
best is to copy the entire session and paste it into your email. Example

Microsoft Windows [Version 10.0.16299.192]
(c) 2017 Microsoft Corporation. All rights reserved.

C:\Users\bgailer>pip install foo
Collecting foo
  Could not find a version that satisfies the requirement foo (from 
versions: )

No matching distribution found for foo

We could presume in your case that you tried to enter your pip command 
in a python interactive session. For example:


C:\Users\bgailer>python
Python 3.3.5 (v3.3.5:62cf4e77f785, Mar  9 2014, 10:35:05) [MSC v.1600 64 
bit (AMD64)] on win32

Type "help", "copyright", "credits" or "license" for more information.
>>> pip install foo
  File "", line 1
    pip install foo
  ^
SyntaxError: invalid syntax
>>>

Why did you get that response? Because pip is not a python statement 
(python does not have commands); it is an executable program. So you 
need to use a command prompt or terminal.



--
https://mail.python.org/mailman/listinfo/python-list


Re: Fwd: Syntax error

2018-02-03 Thread Terry Reedy

On 2/3/2018 2:10 PM, Kevin Doney wrote:

Hi.

*pip3 install --upgrade tensorflow-gpu*

When I try the above command I get
SyntaxError: invalid syntax


Please help.


This group helps those who help the group -- by asking questions with 
sufficient information to answer.  Post the ENTIRE trackback.



--
Terry Jan Reedy

--
https://mail.python.org/mailman/listinfo/python-list


Fwd: Syntax error

2018-02-03 Thread Kevin Doney
Hi.

*pip3 install --upgrade tensorflow-gpu*

When I try the above command I get
SyntaxError: invalid syntax


Please help.
-- 
https://mail.python.org/mailman/listinfo/python-list