Re: Can't run easy_install even though setuptools is installed

2019-11-08 Thread Cameron Simpson

On 09Nov2019 13:15, Cameron Simpson  wrote:

On 08Nov2019 09:14, Chris Green  wrote:

Cameron Simpson  wrote:

Have you tried this?
  pip install onkyo-eiscp


I have now and it worked perfectly.  So why do the install
instructions for onkyo-eiscp say do "easy_install onkyo-eiscp"? It
definitely means from the command line.  I mean it's not even as if
"easy_install" is fewer letters to type than "pip install"! :-)


Probably the instructions are old.


Indeed, go here:

   https://github.com/miracle2k/onkyo-eiscp/blame/master/README.rst

you can see that that instruction is 7 years old. The commit message 
says "Added PyPI installation instructions.", and that means "pip" these 
days.


Cheers,
Cameron Simpson 
--
https://mail.python.org/mailman/listinfo/python-list


Re: Can't run easy_install even though setuptools is installed

2019-11-08 Thread Cameron Simpson

On 08Nov2019 09:14, Chris Green  wrote:

Cameron Simpson  wrote:

Have you tried this?

   pip install onkyo-eiscp


I have now and it worked perfectly.  So why do the install
instructions for onkyo-eiscp say do "easy_install onkyo-eiscp"? It
definitely means from the command line.  I mean it's not even as if
"easy_install" is fewer letters to type than "pip install"! :-)


Probably the instructions are old.

Cheers,
Cameron Simpson 
--
https://mail.python.org/mailman/listinfo/python-list


Re: Can't run easy_install even though setuptools is installed

2019-11-08 Thread Chris Green
Cameron Simpson  wrote:
> On 07Nov2019 21:38, Chris Green  wrote:
> >I'm a bit flummoxed.
> >
> >I'm trying to install a Python package from pypi.org, it says it
> >should be installed by running "easy_install onkyo-eiscp" but I just
> >get "easy_install:  command not found" when I try that.  I do have
> >setuptools installed on my system and I can see "easy_install.py" in
> >the package installation area.
> >
> >This is on an xubuntu 19.04 Linux system.
> >
> >So what is wrong?
> 
> Have you tried this?
> 
>pip install onkyo-eiscp
> 
I have now and it worked perfectly.  So why do the install
instructions for onkyo-eiscp say do "easy_install onkyo-eiscp"? It
definitely means from the command line.  I mean it's not even as if
"easy_install" is fewer letters to type than "pip install"! :-)

Anyway, thanks for the help,

-- 
Chris Green
·
-- 
https://mail.python.org/mailman/listinfo/python-list


Re: Can't run easy_install even though setuptools is installed

2019-11-07 Thread Cameron Simpson

On 07Nov2019 21:38, Chris Green  wrote:

I'm a bit flummoxed.

I'm trying to install a Python package from pypi.org, it says it
should be installed by running "easy_install onkyo-eiscp" but I just
get "easy_install:  command not found" when I try that.  I do have
setuptools installed on my system and I can see "easy_install.py" in
the package installation area.

This is on an xubuntu 19.04 Linux system.

So what is wrong?


Have you tried this?

   pip install onkyo-eiscp

Using the pip associated with your intended Python executable. "python 
-m pip" should also work, where "python" is the python you're intending 
to use it with.


Thus (using pip, the command line flavour of the module, should be 
preinstalled with Python 2 >=2.7.9 or Python 3 >=3.4):


   [~]fleet*> pip install onkyo-eiscp
   Collecting onkyo-eiscp
 Downloading 
   https://files.pythonhosted.org/packages/05/7b/a25440e34d015237d1f68b8e353f06eaa3a90c1fa77a6621e5e15e4388de/onkyo-eiscp-1.2.7.tar.gz 
   (48kB)

|| 51kB 864kB/s
   Collecting docopt>=0.4.1
 Downloading 
   https://files.pythonhosted.org/packages/a2/55/8f8cab2afd404cf578136ef2cc5dfb50baa1761b68c9da1fb1e4eed343c9/docopt-0.6.2.tar.gz

   Collecting netifaces
 Downloading 
   https://files.pythonhosted.org/packages/0d/18/fd6e9c71a35b67a73160ec80a49da63d1eed2d2055054cc2995714949132/netifaces-0.10.9.tar.gz

   Installing collected packages: docopt, netifaces, onkyo-eiscp
   Running setup.py install for docopt ... done
   Running setup.py install for netifaces ... done
   Running setup.py install for onkyo-eiscp ... done
   Successfully installed docopt-0.6.2 netifaces-0.10.9 onkyo-eiscp-1.2.7

Cheers,
Cameron Simpson 
--
https://mail.python.org/mailman/listinfo/python-list


Can't run easy_install even though setuptools is installed

2019-11-07 Thread Chris Green
I'm a bit flummoxed.

I'm trying to install a Python package from pypi.org, it says it
should be installed by running "easy_install onkyo-eiscp" but I just
get "easy_install:  command not found" when I try that.  I do have
setuptools installed on my system and I can see "easy_install.py" in
the package installation area.

This is on an xubuntu 19.04 Linux system.

So what is wrong?

-- 
Chris Green
·
-- 
https://mail.python.org/mailman/listinfo/python-list