[issue7231] Windows installer does not add \Scripts folder to the path

2014-02-20 Thread Piotr Dobrogost

Changes by Piotr Dobrogost p...@bugs.python.dobrogost.net:


--
nosy: +piotr.dobrogost

___
Python tracker rep...@bugs.python.org
http://bugs.python.org/issue7231
___
___
Python-bugs-list mailing list
Unsubscribe: 
https://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[issue7231] Windows installer does not add \Scripts folder to the path

2012-08-15 Thread Éric Araujo

Éric Araujo added the comment:

BTW, any reason to create python27.exe instead of python2.7.exe (so that the 
unix-centered docs about command lines would also apply to your Pythons)?

--

___
Python tracker rep...@bugs.python.org
http://bugs.python.org/issue7231
___
___
Python-bugs-list mailing list
Unsubscribe: 
http://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[issue7231] Windows installer does not add \Scripts folder to the path

2012-08-13 Thread R. David Murray

Changes by R. David Murray rdmur...@bitdance.com:


--
resolution:  - duplicate
stage: needs patch - committed/rejected
status: open - closed
superseder:  - Windows installer should add Python and Scripts directories to 
the PATH environment variable

___
Python tracker rep...@bugs.python.org
http://bugs.python.org/issue7231
___
___
Python-bugs-list mailing list
Unsubscribe: 
http://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[issue7231] Windows installer does not add \Scripts folder to the path

2011-07-05 Thread Éric Araujo

Éric Araujo mer...@netwok.org added the comment:

Duplicate of #9093 (or is it the reverse?)

--
nosy: +eric.araujo

___
Python tracker rep...@bugs.python.org
http://bugs.python.org/issue7231
___
___
Python-bugs-list mailing list
Unsubscribe: 
http://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[issue7231] Windows installer does not add \Scripts folder to the path

2011-07-05 Thread Éric Araujo

Changes by Éric Araujo mer...@netwok.org:


--
Removed message: http://bugs.python.org/msg139884

___
Python tracker rep...@bugs.python.org
http://bugs.python.org/issue7231
___
___
Python-bugs-list mailing list
Unsubscribe: 
http://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[issue7231] Windows installer does not add \Scripts folder to the path

2011-07-05 Thread Éric Araujo

Éric Araujo mer...@netwok.org added the comment:

Duplicate of #3561 (or maybe the reverse)

--

___
Python tracker rep...@bugs.python.org
http://bugs.python.org/issue7231
___
___
Python-bugs-list mailing list
Unsubscribe: 
http://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[issue7231] Windows installer does not add \Scripts folder to the path

2010-09-03 Thread Jason R. Coombs

Jason R. Coombs jar...@jaraco.com added the comment:

The big problem with adding the %python%\scripts directory to the path is it 
makes a lot of assumptions about how Python is deployed.

And it raises some questions. What should the precedence be? What should happen 
if multiple versions of Python are installed? Should the latest version take 
precedence? Should the latest version remove the path for the previous version?

Personally, I'm -1 on this idea unless it's a checkbox that can easily be 
deselected (or not selected by default). I install multiple different versions 
of Python to my system and I symlink \Python to the active version and I add 
\Python\Scripts to the path, so I can easily switch between my active version 
of Python. Adding \Python26\Scripts and \Python26-64\Scripts and 
\Python27\Scripts and ... to the path could become very messy.

Perhaps a better solution would be to provide a link in the start menu or a 
script to be run which adds the scripts to the path for that instance of 
Python... so it could be easily and painlessly added after the fact.

--
nosy: +jaraco

___
Python tracker rep...@bugs.python.org
http://bugs.python.org/issue7231
___
___
Python-bugs-list mailing list
Unsubscribe: 
http://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[issue7231] Windows installer does not add \Scripts folder to the path

2010-09-03 Thread sorin

sorin sorin.sbar...@gmail.com added the comment:

Important tools (like ease_install, pypm) from `Script` directory are already 
including version prefixes in their names (tool-2.7.exe).

This means that it should not be a big problem having several Scripts 
directories on your path.

Most python users are not installing several versions, but we could expect that 
most of them will want to run a tool from scripts.

--

___
Python tracker rep...@bugs.python.org
http://bugs.python.org/issue7231
___
___
Python-bugs-list mailing list
Unsubscribe: 
http://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[issue7231] Windows installer does not add \Scripts folder to the path

2010-09-03 Thread Brian Curtin

Brian Curtin cur...@acm.org added the comment:

 Important tools (like ease_install, pypm) from `Script` directory are
 already including version prefixes in their names (tool-2.7.exe).
 
 This means that it should not be a big problem having several Scripts
 directories on your path.

Just adding all Script directories to the path would penalize those projects 
who don't add versions to their file names. We should not do that.

If we're going to add any type of path manipulation, it should have the options 
to replace existing paths, append existing paths, or do nothing.


 Most python users are not installing several versions, but we could
 expect that most of them will want to run a tool from scripts.

Neither of these are true from my experience. Since 3.0 came out, I have always 
had a 2.x and 3.x installed concurrently, and come across many coworkers who 
have numerous versions installed. As for most people using something in 
Scripts, I've rarely interacted with anyone who uses it or knows about it 
besides myself.

--
nosy: +brian.curtin
stage:  - needs patch
versions:  -Python 3.3

___
Python tracker rep...@bugs.python.org
http://bugs.python.org/issue7231
___
___
Python-bugs-list mailing list
Unsubscribe: 
http://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[issue7231] Windows installer does not add \Scripts folder to the path

2010-09-03 Thread Brian Curtin

Brian Curtin cur...@acm.org added the comment:

s/append existing paths/append new paths/

--

___
Python tracker rep...@bugs.python.org
http://bugs.python.org/issue7231
___
___
Python-bugs-list mailing list
Unsubscribe: 
http://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[issue7231] Windows installer does not add \Scripts folder to the path

2010-09-03 Thread Sridhar Ratnakumar

Sridhar Ratnakumar sridh...@activestate.com added the comment:

FWIW, since last year ActivePython 2.6/2.7 puts C:\PythonXY\Scripts and 
%APPDATA%\Python\Scripts in %PATH% and we haven't had any complaints so far.

In addition, we also create a versioned interpreter executable - 
C:\PythonXY\pythonxy.exe - that is something the official installer can do as 
well, as it makes it possible to just type, say, python27 when multiple 
Python versions are installed ... similar to typing 'python2.7' on *nix.

--

___
Python tracker rep...@bugs.python.org
http://bugs.python.org/issue7231
___
___
Python-bugs-list mailing list
Unsubscribe: 
http://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[issue7231] Windows installer does not add \Scripts folder to the path

2010-07-19 Thread Sridhar Ratnakumar

Changes by Sridhar Ratnakumar sridh...@activestate.com:


--
components: +Windows
nosy: +srid
type: behavior - feature request
versions: +Python 3.3 -Python 2.4, Python 2.5, Python 2.6, Python 3.0, Python 
3.1

___
Python tracker rep...@bugs.python.org
http://bugs.python.org/issue7231
___
___
Python-bugs-list mailing list
Unsubscribe: 
http://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[issue7231] Windows installer does not add \Scripts folder to the path

2010-07-14 Thread sorin

sorin sorin.sbar...@gmail.com added the comment:

Additional information that will enable the installer to update the path 
without requiring a relogin/restart: http://support.microsoft.com/kb/104011

--

___
Python tracker rep...@bugs.python.org
http://bugs.python.org/issue7231
___
___
Python-bugs-list mailing list
Unsubscribe: 
http://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[issue7231] Windows installer does not add \Scripts folder to the path

2009-11-18 Thread sorin

sorin sorin.sbar...@gmail.com added the comment:

Thanks Isaul,
Anyway I made the required change before submitting the bug first time
and additionally to what you wrote it is enough to logout/login to
update the path - no reboot required.

The bug is about repairing/improving Python experience for all Windows
users. Imagine that you want to deploy Python plus some extensions to
many Windows computers - you will have a hard time adding Script
directory to the path.

--

___
Python tracker rep...@bugs.python.org
http://bugs.python.org/issue7231
___
___
Python-bugs-list mailing list
Unsubscribe: 
http://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[issue7231] Windows installer does not add \Scripts folder to the path

2009-11-17 Thread Isaul Vargas

Isaul Vargas isa...@gmail.com added the comment:

For now you can modify the path yourself, and only once, by following 
these instructions:
1) Open the System Properties either via the Control Panel or pressing 
WinKey-Pause
2) Click on the tab that says Advanced
3) Click on Environment Variables
4) Under System Variables, scroll down and find Path
5) Click on Edit
6) Add ;X:/PythonXX/Scripts where X is the appropriate drive letter and 
python version.
7) Click OK, and OK again.

You might have to reboot, but now that it is added, you don't have to 
manually update it.

--
nosy: +Dude-X

___
Python tracker rep...@bugs.python.org
http://bugs.python.org/issue7231
___
___
Python-bugs-list mailing list
Unsubscribe: 
http://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[issue7231] Windows installer does not add \Scripts folder to the path

2009-10-28 Thread sorin

New submission from sorin sorin.sbar...@gmail.com:

I observed that Windows installer is able to add only the Python
installation folder to the path. 

In addition to this it should add the Scrips folder because many python
tools are installing scripts inside it, scripts that the user cannot us
unless he add this directory to the path. 

This is very annoying because if you modify the PATH you need to
logout/login in order to be able to use the new PATH value.

--
components: Installation
messages: 94633
nosy: sorin
severity: normal
status: open
title: Windows installer does not add \Scripts folder to the path
type: behavior
versions: Python 2.4, Python 2.5, Python 2.6, Python 2.7, Python 3.0, Python 
3.1, Python 3.2

___
Python tracker rep...@bugs.python.org
http://bugs.python.org/issue7231
___
___
Python-bugs-list mailing list
Unsubscribe: 
http://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com