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
932073a1
Kaydet (Commit)
932073a1
authored
May 23, 2009
tarafından
Benjamin Peterson
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
remove the fullinstall target since py3k will always be known as python3 #6047
üst
971e51be
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
12 additions
and
26 deletions
+12
-26
Makefile.pre.in
Makefile.pre.in
+5
-24
NEWS
Misc/NEWS
+5
-0
README
README
+2
-2
No files found.
Makefile.pre.in
Dosyayı görüntüle @
932073a1
...
...
@@ -754,18 +754,8 @@ memtest: all platform
-
$(TESTPYTHON)
$(TESTPROG)
$(MEMTESTOPTS)
$(TESTPYTHON)
$(TESTPROG)
$(MEMTESTOPTS)
# Install everything, and install Python 3 to "python"
fullinstall
:
@FRAMEWORKINSTALLFIRST@ altinstall bininstall @FRAMEWORKINSTALLLAST@
# "make install" is an alias for "make altinstall" since we don't want to
# overwrite Python 2.x by default.
install
:
altinstall
@
echo
"* Note: not installed as 'python'."
@
echo
"* Use 'make fullinstall' to install as 'python'."
@
echo
"* However, 'make fullinstall' is discouraged,"
@
echo
"* as it will clobber your Python 2.x installation."
# Install almost everything without disturbing 2.x versions
install
:
altinstall bininstall
altinstall
:
@FRAMEWORKALTINSTALLFIRST@ altbininstall libinstall inclinstall libainstall
\
sharedinstall oldsharedinstall maninstall @FRAMEWORKALTINSTALLLAST@
...
...
@@ -790,20 +780,9 @@ $(DESTSHARED):
fi
;
\
done
# Install the interpreter (by creating a hard link to python$(VERSION))
bininstall
:
altbininstall
-
if
test
-f
$(DESTDIR)$(BINDIR)
/
$(PYTHON)$(EXE)
-o
-h
$(DESTDIR)$(BINDIR)
/
$(PYTHON)$(EXE)
;
\
then
rm
-f
$(DESTDIR)$(BINDIR)
/
$(PYTHON)$(EXE)
;
\
else
true
;
\
fi
(
cd
$(DESTDIR)$(BINDIR)
;
$(LN)
python
$(VERSION)$(EXE)
$(PYTHON)$(EXE)
)
-
rm
-f
$(DESTDIR)$(BINDIR)
/python-config
(
cd
$(DESTDIR)$(BINDIR)
;
$(LN)
-s
python
$(VERSION)
-config
python-config
)
# Install the interpreter with $(VERSION) affixed
# This goes into $(exec_prefix)
altbininstall
:
$(BUILDPYTHON)
altbininstall
:
$(BUILDPYTHON)
@
for
i
in
$(BINDIR)
$(LIBDIR)
;
\
do
\
if
test
!
-d
$(DESTDIR)$$
i
;
then
\
...
...
@@ -824,6 +803,8 @@ altbininstall: $(BUILDPYTHON)
fi
;
\
else
true
;
\
fi
bininstall
:
altbininstall
-
if
test
-f
$(DESTDIR)$(BINDIR)
/
$(PYTHON)
3
$(EXE)
-o
-h
$(DESTDIR)$(BINDIR)
/
$(PYTHON)
3
$(EXE)
;
\
then
rm
-f
$(DESTDIR)$(BINDIR)
/
$(PYTHON)
3
$(EXE)
;
\
else
true
;
\
...
...
Misc/NEWS
Dosyayı görüntüle @
932073a1
...
...
@@ -60,6 +60,11 @@ Library
- Issue 5955: aifc's close method did not close the file it wrapped,
now it does. This also means getfp method now returns the real fp.
Installation
------------
- Issue #6047: fullinstall has been removed because Python 3's executable will
now be known as python3.
Extension Modules
-----------------
...
...
README
Dosyayı görüntüle @
932073a1
...
...
@@ -119,7 +119,7 @@ script) you must take care that your primary python executable is not
overwritten by the installation of a different versio. All files and
directories installed using "make altinstall" contain the major and minor
version and can thus live side-by-side. "make install" also creates
${prefix}/bin/python which refers to ${prefix}/bin/pythonX.Y. If you intend
${prefix}/bin/python
3
which refers to ${prefix}/bin/pythonX.Y. If you intend
to install multiple versions using the same prefix you must decide which
version (if any) is your "primary" version. Install that version using
"make install". Install all other versions using "make altinstall".
...
...
@@ -167,7 +167,7 @@ On Unix, Linux, BSD, OSX, and Cygwin:
./configure
make
make test
sudo make install
# or "make altinstall"
sudo make install
You can pass many options to the configure script; run "./configure
--help" to find out more. On OSX and Cygwin, the executable is called
...
...
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