Skip to content
Projeler
Gruplar
Parçacıklar
Yardım
Yükleniyor...
Oturum aç / Kaydol
Gezinmeyi değiştir
C
cpython
Proje
Proje
Ayrıntılar
Etkinlik
Cycle Analytics
Depo (repository)
Depo (repository)
Dosyalar
Kayıtlar (commit)
Dallar (branch)
Etiketler
Katkıda bulunanlar
Grafik
Karşılaştır
Grafikler
Konular (issue)
0
Konular (issue)
0
Liste
Pano
Etiketler
Kilometre Taşları
Birleştirme (merge) Talepleri
0
Birleştirme (merge) Talepleri
0
CI / CD
CI / CD
İş akışları (pipeline)
İşler
Zamanlamalar
Grafikler
Paketler
Paketler
Wiki
Wiki
Parçacıklar
Parçacıklar
Üyeler
Üyeler
Collapse sidebar
Close sidebar
Etkinlik
Grafik
Grafikler
Yeni bir konu (issue) oluştur
İşler
Kayıtlar (commit)
Konu (issue) Panoları
Kenar çubuğunu aç
Batuhan Osman TASKAYA
cpython
Commits
17be514d
Kaydet (Commit)
17be514d
authored
Şub 14, 2015
tarafından
Steve Dower
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
Closes #23437: Make user scripts directory versioned on Windows (patch by pmoore)
üst
a9076d65
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
5 additions
and
4 deletions
+5
-4
index.rst
Doc/install/index.rst
+1
-1
install.py
Lib/distutils/command/install.py
+1
-1
sysconfig.py
Lib/sysconfig.py
+1
-1
win_add2path.py
Tools/scripts/win_add2path.py
+2
-1
No files found.
Doc/install/index.rst
Dosyayı görüntüle @
17be514d
...
...
@@ -361,7 +361,7 @@ And here are the values used on Windows:
Type of file Installation directory
=============== ===========================================================
modules :file:`{userbase}\\Python{XY}\\site-packages`
scripts :file:`{userbase}\\Scripts`
scripts :file:`{userbase}\\
Python{XY}\\
Scripts`
data :file:`{userbase}`
C headers :file:`{userbase}\\Python{XY}\\Include\\{distname}`
=============== ===========================================================
...
...
Lib/distutils/command/install.py
Dosyayı görüntüle @
17be514d
...
...
@@ -51,7 +51,7 @@ if HAS_USER_SITE:
'purelib'
:
'$usersite'
,
'platlib'
:
'$usersite'
,
'headers'
:
'$userbase/Python$py_version_nodot/Include/$dist_name'
,
'scripts'
:
'$userbase/Scripts'
,
'scripts'
:
'$userbase/
Python$py_version_nodot/
Scripts'
,
'data'
:
'$userbase'
,
}
...
...
Lib/sysconfig.py
Dosyayı görüntüle @
17be514d
...
...
@@ -57,7 +57,7 @@ _INSTALL_SCHEMES = {
'purelib'
:
'{userbase}/Python{py_version_nodot}/site-packages'
,
'platlib'
:
'{userbase}/Python{py_version_nodot}/site-packages'
,
'include'
:
'{userbase}/Python{py_version_nodot}/Include'
,
'scripts'
:
'{userbase}/Scripts'
,
'scripts'
:
'{userbase}/
Python{py_version_nodot}/
Scripts'
,
'data'
:
'{userbase}'
,
},
'posix_user'
:
{
...
...
Tools/scripts/win_add2path.py
Dosyayı görüntüle @
17be514d
...
...
@@ -22,7 +22,8 @@ def modify():
scripts
=
os
.
path
.
join
(
pythonpath
,
"Scripts"
)
appdata
=
os
.
environ
[
"APPDATA"
]
if
hasattr
(
site
,
"USER_SITE"
):
userpath
=
site
.
USER_SITE
.
replace
(
appdata
,
"
%
APPDATA
%
"
)
usersite
=
site
.
USER_SITE
.
replace
(
appdata
,
"
%
APPDATA
%
"
)
userpath
=
os
.
path
.
dirname
(
usersite
)
userscripts
=
os
.
path
.
join
(
userpath
,
"Scripts"
)
else
:
userscripts
=
None
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment