Re: [Tutor] Using pip

2018-07-05 Thread Steven D'Aprano
On Thu, Jul 05, 2018 at 04:03:00PM +, Hlavin, Matthew (GSFC-5460)[GSFC INTERNS] wrote: > I just downloaded Python to work on a project at work. I'm writing a > pretty simple program for data collection for an experiment. In order > to get the data, though I need to install PyVISA. The

Re: [Tutor] Using pip

2018-07-05 Thread Mats Wichmann
On 07/05/2018 11:11 AM, James Reynolds wrote: > On Thu, Jul 5, 2018 at 12:55 PM Hlavin, Matthew (GSFC-5460)[GSFC INTERNS] < > matthew.hla...@nasa.gov> wrote: > >> I just downloaded Python to work on a project at work. I'm writing a >> pretty simple program for data collection for an experiment.

Re: [Tutor] Using pip

2018-07-05 Thread Jim
On 07/05/2018 11:03 AM, Hlavin, Matthew (GSFC-5460)[GSFC INTERNS] wrote: I just downloaded Python to work on a project at work. I'm writing a pretty simple program for data collection for an experiment. In order to get the data, though I need to install PyVISA. The website for PyVISA says I

Re: [Tutor] Using pip

2018-07-05 Thread James Reynolds
On Thu, Jul 5, 2018 at 12:55 PM Hlavin, Matthew (GSFC-5460)[GSFC INTERNS] < matthew.hla...@nasa.gov> wrote: > I just downloaded Python to work on a project at work. I'm writing a > pretty simple program for data collection for an experiment. In order to > get the data, though I need to install

Re: [Tutor] Using pip

2018-07-05 Thread Alan Gauld via Tutor
On 05/07/18 17:03, Hlavin, Matthew (GSFC-5460)[GSFC INTERNS] wrote: > install the library using the line: > $ pip install -U pyvisa > When I type this line, I get a syntax error The most common reason is that you are trying to type it at the Python >>> prompt. It should be typed at the OS prompt.

[Tutor] Using pip

2018-07-05 Thread Hlavin, Matthew (GSFC-5460)[GSFC INTERNS]
I just downloaded Python to work on a project at work. I'm writing a pretty simple program for data collection for an experiment. In order to get the data, though I need to install PyVISA. The website for PyVISA says I can install the library using the line: $ pip install -U pyvisa When I type