[Distutils] Installation Instructions for Python?

2020-12-11 Thread Cort, Brian
Hello,

We were trying to create an automated installation process.
As part of this, our software deployment team has requested the installation 
instructions, which I was unable to locate.
Can you help by pointing me towards them?

Thank you,

Brian

Brian Cort | Application Analyst
Kroger Technology: Point of Sale | The Kroger Co.
office: 503.797.3229 cell: 971.293.6244

[cid:image001.png@01D6CD4D.01E06F70]
For more POS related information, please feel free to see our publicly 
accessible Wiki/Confluence Site:
https://confluence.kroger.com/confluence/x/BySXBQ




This e-mail message, including any attachments, is for the sole use of the 
intended recipient(s) and may contain information that is confidential and 
protected by law from unauthorized disclosure. Any unauthorized review, use, 
disclosure or distribution is prohibited. If you are not the intended 
recipient, please contact the sender by reply e-mail and destroy all copies of 
the original message.
--
Distutils-SIG mailing list -- distutils-sig@python.org
To unsubscribe send an email to distutils-sig-le...@python.org
https://mail.python.org/mailman3/lists/distutils-sig.python.org/
Message archived at 
https://mail.python.org/archives/list/distutils-sig@python.org/message/RUNMMTXXNBZYDK7XLLPI6RCHZUIBGSZJ/


Re: [Distutils] Installation problem

2017-06-01 Thread Aneesh Kona
Got it, thanks!
I fixed it.
On Wed, May 31, 2017 at 9:19 AM Robert T. McGibbon 
wrote:

> This isn't actually the right place to ask for installation help, Aneesh.
> Your best bet would be the python-list or python-help mailing list.
>
> -Robert
>
> On Tue, May 30, 2017 at 7:24 PM, Aneesh Kona  wrote:
>
>> Hi,
>> I'm getting an error while installing software,
>> I did installed firstly but did in another in local disk,
>> but I want to install again, now it shows 'fatal error,' can you please
>> let me fix it, so that I can install again in C disk,
>> plz hand me in this particular,
>> Thanks.
>>
>> Venkata Aneesh Kona
>> Graduate Assistant
>> Department of Mining Engineering and Management
>> South Dakota School of Mines & Technology
>> @: venkataaneesh.k...@mines.sdsmt.edu
>> ph: 6823042622 <(682)%20304-2622>
>>
>> ___
>> Distutils-SIG maillist  -  Distutils-SIG@python.org
>> https://mail.python.org/mailman/listinfo/distutils-sig
>>
>>
>
>
> --
> -Robert
>
-- 
Sent from Aneesh Iphone
___
Distutils-SIG maillist  -  Distutils-SIG@python.org
https://mail.python.org/mailman/listinfo/distutils-sig


Re: [Distutils] Installation problem

2017-05-31 Thread Robert T. McGibbon
This isn't actually the right place to ask for installation help, Aneesh.
Your best bet would be the python-list or python-help mailing list.

-Robert

On Tue, May 30, 2017 at 7:24 PM, Aneesh Kona  wrote:

> Hi,
> I'm getting an error while installing software,
> I did installed firstly but did in another in local disk,
> but I want to install again, now it shows 'fatal error,' can you please
> let me fix it, so that I can install again in C disk,
> plz hand me in this particular,
> Thanks.
>
> Venkata Aneesh Kona
> Graduate Assistant
> Department of Mining Engineering and Management
> South Dakota School of Mines & Technology
> @: venkataaneesh.k...@mines.sdsmt.edu
> ph: 6823042622 <(682)%20304-2622>
>
> ___
> Distutils-SIG maillist  -  Distutils-SIG@python.org
> https://mail.python.org/mailman/listinfo/distutils-sig
>
>


-- 
-Robert
___
Distutils-SIG maillist  -  Distutils-SIG@python.org
https://mail.python.org/mailman/listinfo/distutils-sig


[Distutils] Installation problem

2017-05-31 Thread Aneesh Kona
Hi,
I'm getting an error while installing software,
I did installed firstly but did in another in local disk,
but I want to install again, now it shows 'fatal error,' can you please let
me fix it, so that I can install again in C disk,
plz hand me in this particular,
Thanks.

Venkata Aneesh Kona
Graduate Assistant
Department of Mining Engineering and Management
South Dakota School of Mines & Technology
@: venkataaneesh.k...@mines.sdsmt.edu
ph: 6823042622
___
Distutils-SIG maillist  -  Distutils-SIG@python.org
https://mail.python.org/mailman/listinfo/distutils-sig


Re: [Distutils] Installation

2012-04-17 Thread Éric Araujo

Hello,

Le 09/02/2012 10:11, Erik Bray a écrit :

Distutils2 is included in Python 3 under the name 'packaging' which is
where, I believe, most of its development is focused.  The
"distutils2" name is used for the backport of packaging to Python 2.x
as well as Python 3.x prior to the availability of packaging in the
standard library.

This is correct, except for one point (see below).


Confused yet?  There are some historical reasons for all that, but the
main point is that if you're interested in working on distutils2, you
really want to up and running on the main Python development branch
and work on *packaging*.  I think that most of the work is being done
there, and then backported to distutils2.
My personal preference is to work in the cpython repository, because I 
prefer Python 3 and the stdlib’s test runner is useful (finds reference 
leaks, finds tests that modify the environment and don’t restore it, 
this kind of things).  Contributors however are free to work from a 
distutils2 clone if that’s easier for them: both codebases are 
synchronized and I gladly port patches.


Cheers
___
Distutils-SIG maillist  -  Distutils-SIG@python.org
http://mail.python.org/mailman/listinfo/distutils-sig


Re: [Distutils] Installation

2012-02-09 Thread Erik Bray
Hi Vikash,

On Thu, Feb 9, 2012 at 1:02 AM, vikash agrawal
 wrote:
> Ok, I will try installing it tonight from tarek's, and will let you know.
> Also some time ago, I was trying to package it for Fedora 16 and I faced
> similar problem with that, pysetup not getting installed.
>
> Also @tarek, if possible Please update python-side for the package
>
> And why do I need latest cython for distutils? I would be using 2.X and not
> 3.X

Distutils2 is included in Python 3 under the name 'packaging' which is
where, I believe, most of its development is focused.  The
"distutils2" name is used for the backport of packaging to Python 2.x
as well as Python 3.x prior to the availability of packaging in the
standard library.

Confused yet?  There are some historical reasons for all that, but the
main point is that if you're interested in working on distutils2, you
really want to up and running on the main Python development branch
and work on *packaging*.  I think that most of the work is being done
there, and then backported to distutils2.  This post Tarek made a
while back should help you get up and running:
http://tarekziade.wordpress.com/2011/06/02/help-us-ironing-packaging/

Erik

> [...]
>>
>> > Also, I had previously come in contact with merwok and I would be
>> > applying
>> > in GSoC this year under PSF for distutils2 project (as I believe PSF
>> > will be
>> > under GSoC and distutils will surely be accepted), so I am writing to
>> > seek
>> > help on what all things should be my target, and how do I move ahead.
>> > Currently, I am trying to work on the ]issue 12944 but due to certain
>> > constraints things are not geared up, though I hope they would soon be
>> > :)
>> > Please guide me and drop-in all your suggestions
>> >
>> > Regards
>> >
>> > Vikash Agrawal
>> >
>
> [...]
>
> Waiting for guidance
>
>
> Regards
> Vikash Agrawal
>
>
> --
> sent via HTC Sensation
>
>
___
Distutils-SIG maillist  -  Distutils-SIG@python.org
http://mail.python.org/mailman/listinfo/distutils-sig


Re: [Distutils] Installation

2012-02-08 Thread vikash agrawal
hi Erik

On Wed, Feb 8, 2012 at 11:23 PM, Erik Bray  wrote:

> On Wed, Feb 8, 2012 at 12:32 PM, vikash agrawal
>  wrote:
> > hi Everyone,
> >
> > I am using Python 2.7, so how do I install pysetup. though when I install
> > distutils1.0a3 I do see distutils module in my interactive session but I
> > dont see any pysetup being installed
>
> That "release" is pretty old, and I'm not sure it even includes the
> pysetup script.  If you're going to be doing d2 development you're
> best off getting the latest source from hg:
> https://bitbucket.org/tarek/distutils2
>
> You should also make sure to get the latest cpython repo from
> http://hg.python.org/cpython to work on packaging.  Though I don't
> know exactly what the current policy is on merging from packaging to
> distutils2 or vice-versa, so I'm not the best person to comment on
> that.
>
> Erik
>
[...]

Ok, I will try installing it tonight from tarek's, and will let you know.
Also some time ago, I was trying to package it for Fedora 16 and I faced
similar problem with that, pysetup not getting installed.

Also @tarek, if possible Please update python-side for the package

And why do I need latest cython for distutils? I would be using 2.X and not
3.X
[...]

>  > Also, I had previously come in contact with merwok and I would be
> applying
> > in GSoC this year under PSF for distutils2 project (as I believe PSF
> will be
> > under GSoC and distutils will surely be accepted), so I am writing to
> seek
> > help on what all things should be my target, and how do I move ahead.
> > Currently, I am trying to work on the ]issue 12944 but due to certain
> > constraints things are not geared up, though I hope they would soon be :)
> > Please guide me and drop-in all your suggestions
> >
> > Regards
> >
> > Vikash Agrawal
> > 
>
[...]

Waiting for guidance

Regards
Vikash Agrawal


-- 
sent via HTC Sensation
___
Distutils-SIG maillist  -  Distutils-SIG@python.org
http://mail.python.org/mailman/listinfo/distutils-sig


Re: [Distutils] Installation

2012-02-08 Thread Erik Bray
On Wed, Feb 8, 2012 at 12:32 PM, vikash agrawal
 wrote:
> hi Everyone,
>
> I am using Python 2.7, so how do I install pysetup. though when I install
> distutils1.0a3 I do see distutils module in my interactive session but I
> dont see any pysetup being installed

That "release" is pretty old, and I'm not sure it even includes the
pysetup script.  If you're going to be doing d2 development you're
best off getting the latest source from hg:
https://bitbucket.org/tarek/distutils2

You should also make sure to get the latest cpython repo from
http://hg.python.org/cpython to work on packaging.  Though I don't
know exactly what the current policy is on merging from packaging to
distutils2 or vice-versa, so I'm not the best person to comment on
that.

Erik

> Also, I had previously come in contact with merwok and I would be applying
> in GSoC this year under PSF for distutils2 project (as I believe PSF will be
> under GSoC and distutils will surely be accepted), so I am writing to seek
> help on what all things should be my target, and how do I move ahead.
> Currently, I am trying to work on the ]issue 12944 but due to certain
> constraints things are not geared up, though I hope they would soon be :)
> Please guide me and drop-in all your suggestions
>
> Regards
>
> Vikash Agrawal
>
> --
> sent via HTC Sensation
>
>
>
> ___
> Distutils-SIG maillist  -  Distutils-SIG@python.org
> http://mail.python.org/mailman/listinfo/distutils-sig
>
___
Distutils-SIG maillist  -  Distutils-SIG@python.org
http://mail.python.org/mailman/listinfo/distutils-sig


[Distutils] Installation

2012-02-08 Thread vikash agrawal
hi Everyone,

   - I am using Python 2.7, so how do I install pysetup. though when I
   install distutils1.0a3 I do see distutils module in my interactive session
   but I dont see any pysetup being installed
   - Also, I had previously come in contact with merwok and I would be
   applying in GSoC this year under PSF for distutils2 project (as I believe
   PSF will be under GSoC and distutils will surely be accepted), so I am
   writing to seek help on what all things should be my target, and how do I
   move ahead.
   - Currently, I am trying to work on the ]issue 12944 but due to certain
   constraints things are not geared up, though I hope they would soon be :)
   - Please guide me and drop-in all your suggestions

Regards

Vikash Agrawal
-- 
sent via HTC Sensation
___
Distutils-SIG maillist  -  Distutils-SIG@python.org
http://mail.python.org/mailman/listinfo/distutils-sig


Re: [Distutils] installation preferences proposal, volunteer to help implementation

2007-11-19 Thread Martijn Faassen
Hello,

On Nov 19, 2007 7:18 PM, Phillip J. Eby <[EMAIL PROTECTED]> wrote:
[snip]
> >One thing that is not very pretty about 'or' syntax for version
> >preferences is the repetition of the package name:
> >
> >zope.interface | zope.interface == 1.2.3
>
> While syntactically valid, the above is meaningless, since the latter
> requirement implies the former.  The "|" is being used to mean
> "ordered choice" (I suppose "||" would be better in some respects).

Ah, I didn't realized you intended this to mean ordered choice. I was
thinking about a resolution algorithm that would go for the most
specific choice first for any package. I will have to think about
this.

Since you say ordered choice, would you say it's this?

zope.interface == 1.2.3 | zope.interface?

Not meaningless, I hope?

> >I'd like a shortcut syntax for this, something like:
> >
> >zope.interface (1.2.3)
> >
> >We could let that be sugar that expands to the same underlying 'or' syntax.
>
> I'm wary of adding too much syntax to requirements.  The meaning of
> the parentheses in the above is entirely inscrutable.

I'd suggest the syntactic sugar helps making it clearer what's
intended: give me zope.interface, and 1.2.3 I'll guarantee you will
work. zope.interface == 1.2.3 | zope.interface is not intuitively
clear either in its intent. A special syntax can signal the special
intent.

Regards,

Martijn
___
Distutils-SIG maillist  -  Distutils-SIG@python.org
http://mail.python.org/mailman/listinfo/distutils-sig


Re: [Distutils] installation preferences proposal, volunteer to help implementation

2007-11-19 Thread Phillip J. Eby
At 06:49 PM 11/19/2007 +0100, Martijn Faassen wrote:
>Hey,
>
>On Nov 19, 2007 6:31 PM, Phillip J. Eby <[EMAIL PROTECTED]> wrote:
> >
> > Yes.  What's needed is a way to implement "or" syntax for
> > requirements, so that we can  say "Foo<1.2|Bar==1.3" -- and therefore
> > also say e.g. "B==1.3.1|B>=1.3".
>
>I'm trying to understand why you'd want to express "Foo < 1.2 | Bar ==
>1.3" - the library with this dependency would try to import Bar and if
>this fails, it'll try importing Foo?
>
>Why do you use bitwise '|' for this, not 'or' as it used in Python 
>expressions?

Because it's not used by the current syntax, whereas "or" is a valid 
package name.


>One thing that is not very pretty about 'or' syntax for version
>preferences is the repetition of the package name:
>
>zope.interface | zope.interface == 1.2.3

While syntactically valid, the above is meaningless, since the latter 
requirement implies the former.  The "|" is being used to mean 
"ordered choice" (I suppose "||" would be better in some respects).


>I'd like a shortcut syntax for this, something like:
>
>zope.interface (1.2.3)
>
>We could let that be sugar that expands to the same underlying 'or' syntax.

I'm wary of adding too much syntax to requirements.  The meaning of 
the parentheses in the above is entirely inscrutable.


> > In practical terms, this means that what is now Requirement must
> > become a VersionSpec or something of that sort, and a Requirement
> > become an ordered collection of VersionSpec objects.
> >
> > Parsing, naturally, will also change a good bit, as will the
> > resolution algorithm, since right now there is no provision for
> > fallbacks.  Finally, easy_install's core searches will change as well.
> >
> > I don't expect this will be an easy change, even for me.  And it's
> > definitely not going into the 0.6 line, because dependencies in the
> > new syntax won't be readable by older versions of setuptools.
>
>Yes, I understand this needs to be in 0.7. I do want some basic idea
>that there *will* be a 0.7 in the forseeable future if this work
>happens, though, on the order of months, not years. Of course it's
>understood that this would depend on me actually doing the work. :)
>
> > You might wonder why we can't implement something simpler that's more
> > narrowly tailored to what you need, but in truth it wouldn't be much
> > narrowed.  The resolution algorithm and easy_install are probably the
> > tough nuts to crack (especially without tests); by comparison the
> > parsing and object issues should be pretty simple by comparison
> > (especially with tests).
>
>Thanks for the hints. I wasn't expecting it to be easy, and I realize
>that a tailored approach wouldn't make it much simpler (even though I
>would appreciate a syntax for the particular use case).
>
>I'm not expecting this to be easy, I just want to give it a shot. I
>will be writing tests if it's at all feasible. I like tests.
>
>Regards,
>
>Martijn

___
Distutils-SIG maillist  -  Distutils-SIG@python.org
http://mail.python.org/mailman/listinfo/distutils-sig


[Distutils] Installation crashes: Windows XP ntdll.dll

2005-05-11 Thread Reinhard Engel
When I try to install the Windows Installer packages for cTypes and 
uTidyLib the installation crashes

Windows XP
Python 2.4.1


Problem with cTypes:

ctypes-0.9.6.win32-py2.4.exe hat ein Problem festgestellt und muss 
beendet werden.

AppName: ctypes-0.9.6.win32-py2.4.exe AppVer: 0.0.0.0 ModName: 
ntdll.dll
ModVer: 5.1.2600.1217 Offset: b2ab

[metadata]
author=Thomas Heller
[EMAIL PROTECTED]
description=create and manipulate C data types in Python, call functions 
in shared libraries
name=ctypes
url=http://starship.python.net/crew/theller/ctypes.html
version=0.9.6

[Setup]
info=ctypes is a Python package to create and manipulate C data types 
in\nPython, and to call functions in dynamic link 
libraries/shared\ndlls. It allows wrapping these libraries in pure 
Python.\n\n\nAuthor: Thomas Heller\nAuthor_email: 
[EMAIL PROTECTED]Description: create and manipulate C data types 
in Python, call functions in shared libraries\nName: ctypes\n
Url: http://starship.python.net/crew/theller/ctypes.html\nVersion: 0.9.6
target_compile=1
target_optimize=1
target_version=2.4
title=ctypes-0.9.6
build_info=Built Fri Mar 18 19:33:25 2005 with distutils-2.4.1


---
Problem with TidyLib:
---
uTidylib-0.2.1.win32.exe hat ein Problem festgestellt und muss beendet 
werden.

AppName: utidylib-0.2.1.win32.exe AppVer: 0.0.0.0 ModName: ntdll.dll
ModVer: 5.1.2600.1217 Offset: b2ab

[metadata]
author=Cory Dodt
[EMAIL PROTECTED]
description=Wrapper for HTML Tidy at http://tidy.sourceforge.net
name=uTidylib
url=http://utidylib.sf.net
version=0.2.1

[Setup]
info=A wrapper for the relocatable version of HTML Tidy 
(see\nhttp://tidy.sourceforge.net for details).  This allows you 
to\ntidy HTML files through a Pythonic interface.\n\nAuthor: Cory 
Dodt\nAuthor_email: [EMAIL PROTECTED]Description: 
Wrapper for HTML Tidy at http://tidy.sourceforge.net\nName: 
uTidylib\nUrl: http://utidylib.sf.net\nVersion: 0.2.1
target_compile=1
target_optimize=1
title=uTidylib-0.2.1
build_info=Built Tue Dec 07 11:06:09 2004 with distutils-1.0.3
-

There are no problems, if I use Windows Installer with programs that are 
not built with distutils (i.e. Pyhon itself with python-2.4.1.msi).

___
Distutils-SIG maillist  -  Distutils-SIG@python.org
http://mail.python.org/mailman/listinfo/distutils-sig


[Distutils] Installation error

2005-04-05 Thread Yongsheng Zhao
Hello,

When I installed the package, I got the following error:

# python setup.py install
Traceback (most recent call last):
  File "setup.py", line 30, in ?
packages = ['distutils', 'distutils.command'],
  File "/tmp/Distutils-1.0.2/distutils/core.py", line 101, in setup
_setup_distribution = dist = klass(attrs)
  File "/tmp/Distutils-1.0.2/distutils/dist.py", line 130, in __init__
setattr(self, method_name, getattr(self.metadata, method_name))
AttributeError: DistributionMetadata instance has no attribute 'get___doc__'


Anyone know what happens? Thanks.

Regards
Yongsheng Zhao
___
Distutils-SIG maillist  -  Distutils-SIG@python.org
http://mail.python.org/mailman/listinfo/distutils-sig