Ben Norquist
58bbf2a25e
added high_sierra setup instructions
2018-05-13 20:35:43 -07:00
kennethreitz
57b28f8b08
#887
2018-03-07 08:07:41 -05:00
cclauss
26c994960d
Homebrew changed the way that Python is installed
...
https://docs.brew.sh/Homebrew-and-Python
The default __python__ is now Python 3.
2018-03-04 03:09:42 +01:00
cclauss
aef9ad5c0d
Homebrew has changed how Python is installed
...
https://docs.brew.sh/Homebrew-and-Python
The default __python__ is now Python 3.
2018-03-04 03:03:28 +01:00
rroskam
5f348c9be2
Updating to use chocolatey
2018-02-11 10:49:26 -06:00
Ken Colton
a0e33fd384
(osx) how to make python reference python3
...
I noticed that the very next page (which is no longer OSX specific) makes the assumption that `python` will invoke the Python 3 interpreter, while the last mention of versions on this page leaves `python` referencing the OSX System Python interpreter.
I honestly do not know if this is the "correct" way to configure this default. It looks like brew is cautious about symlinking over the native Python 2.7.10 (High Sierra) and they might have good reason. All of my projects are Python 3 now, so i'm ready to "make it ~facebook~ PATH official with Python 3"
Regardless of how it's done - or if it's a bad idea - it's worth mentioning IMO because there is a discontinuity of where this page leaves `python` and where the next page assumes `python` to be.
2018-01-31 22:22:28 -05:00
David Lutton
208447c945
Windows install link to current release
...
Updates the Windows install guide to link to the current release of the installer
2018-01-08 20:05:14 +00:00
kennethreitz
411599c5ad
Merge pull request #860 from bakotaco/master
...
update latest MacOS version name (High Sierra)
2017-12-03 06:41:51 -06:00
Zac-HD
cb3f026a3e
Update install instructions
...
Link py2 docs to py3 docs.
Fix invisible subheading.
Note that pip is part of the Python install now; closes #347 .
Suggest avoiding eol 2.6 unless paid specifically.
2017-11-27 14:35:28 +11:00
Bas Kok
40b16591ae
update latest MacOS version name (High Sierra)
2017-11-20 10:27:31 +01:00
Sander van Dragt
91d788c201
deadsnakes repository change
2017-11-09 15:00:54 +00:00
kennethreitz
28e5118fdc
Merge pull request #850 from Armour/master
...
fixed typo
2017-11-02 15:41:20 -04:00
Nils Diefenbach
cc02d1cfa8
Fixing typos
...
no more bellowing required by reader.
2017-10-16 11:38:35 +02:00
Chong Guo
1cd8fd2e82
fixed typo
2017-10-09 14:23:43 -07:00
Aditya
296e780c77
Update the link for latest available Python 3.6 release for Windows
2017-10-05 13:39:55 +05:30
Aditya
caebc3b3ce
Update the link for latest available Python 2.7 release for Windows
2017-10-05 13:36:40 +05:30
Marco Rougeth
63bde4525a
Add ref to installation.rst
2017-09-26 22:14:58 -03:00
kennethreitz
0286285295
Update win.rst
2017-09-04 16:43:08 -04:00
kennethreitz
e24d7d074b
Update osx.rst
2017-09-04 16:42:59 -04:00
kennethreitz
e69ced1a9c
Update linux.rst
2017-09-04 16:42:48 -04:00
kennethreitz
bf0bf4ad98
Update win.rst
2017-09-04 16:41:56 -04:00
kennethreitz
a3ac30630f
Update osx.rst
2017-09-04 16:41:39 -04:00
kennethreitz
dae92ca463
Update linux.rst
2017-09-04 16:41:23 -04:00
kennethreitz
87a6f8df67
Update linux.rst
2017-09-04 16:40:37 -04:00
kennethreitz
900ff699df
Update which-python.rst
2017-09-04 16:38:09 -04:00
kennethreitz
9ba0f4b794
Update installation.rst
2017-09-04 16:36:45 -04:00
kennethreitz
a336f79754
Update win.rst
2017-09-01 13:04:45 -04:00
kennethreitz
6579fccc1c
Update win.rst
2017-08-30 19:03:23 -04:00
kennethreitz
4c5f4c2aeb
Update osx.rst
2017-08-30 19:03:08 -04:00
kennethreitz
c8035432b5
Update linux.rst
2017-08-30 19:02:49 -04:00
kennethreitz
eab357e58d
Update installation.rst
2017-08-30 18:58:43 -04:00
kennethreitz
eeff404a42
Update which-python.rst
2017-08-30 18:56:59 -04:00
kennethreitz
fbf0d8b999
Update which-python.rst
2017-08-30 18:56:16 -04:00
kennethreitz
97ebece5f1
Update installation.rst
2017-08-30 18:55:26 -04:00
kennethreitz
eb1170d665
Merge pull request #834 from cclauss/patch-2
...
Changes in how homebrew installs Python on Mac OSX
2017-08-17 07:34:01 -07:00
cclauss
2d1b231c4d
Changes in how homebrew installs Python on Mac OSX
...
Homebrew no longer sets pip.
See 5 executable names in https://docs.brew.sh/Homebrew-and-Python.html
python points to the macOS system Python (with no manual PATH modification)
python2 points to Homebrew’s Python 2.7.x (if installed)
python3 points to Homebrew’s Python 3.x (if installed)
pip2 points to Homebrew’s Python 2.7.x’s pip (if installed)
pip3 points to Homebrew’s Python 3.x’s pip (if installed)
2017-08-17 13:44:46 +02:00
cclauss
af75a6aad6
Changes in how homebrew installs Python on Mac OSX
...
Homebrew no longer sets `pip`.
See 5 executable names in https://docs.brew.sh/Homebrew-and-Python.html
* `python` points to the macOS system Python (with no manual PATH modification)
* `python2` points to Homebrew’s Python 2.7.x (if installed)
* `python3` points to Homebrew’s Python 3.x (if installed)
* `pip2` points to Homebrew’s Python 2.7.x’s pip (if installed)
* `pip3` points to Homebrew’s Python 3.x’s pip (if installed)
2017-08-17 13:33:16 +02:00
Sharlak
4432d82020
lengthened title underline appropriately
2017-07-30 21:23:32 +01:00
Miro Hrončok
38ce99c783
Remove "Ubuntu" from a link to page about general Linux
...
The page speaks about several Linux distros and it's not just
about Ubuntu
2017-06-22 18:21:39 +02:00
Miro Hrončok
1446c90087
Update the Linux installation instructions to reflect Fedora
...
* Fedora does not come with Python 2 pre-installed since Fedora 23
* RHEL with Python 2.4 is no longer supported (section removed)
* Added Fedora installation instructions for Python 3.6 as well
* Be carefull about /usr/bin/pip
2017-06-21 15:38:22 +02:00
Carl Karsten
31f3cf52dc
update py27 to 36
2017-06-16 17:15:26 -05:00
kennethreitz
83d1fd49d5
fixes
2017-04-13 11:00:51 -04:00
kennethreitz
a8ed45d5c4
fixes
2017-04-13 10:58:14 -04:00
kennethreitz
9164a1b1e9
working with python 3
2017-04-13 10:53:18 -04:00
kennethreitz
7096c95132
syntax
2017-04-13 10:51:59 -04:00
kennethreitz
fd8cce0708
fix contents
2017-04-13 10:49:47 -04:00
kennethreitz
ef35770716
update installation
2017-04-13 10:46:45 -04:00
kennethreitz
0c97ce5a31
update python 2 guides
2017-04-13 10:43:58 -04:00
kennethreitz
d3d2fcc496
python 3 guides
2017-04-13 10:43:52 -04:00
Marijn van der Zee
85762b8282
We do not want to have it show up in any toc
...
We dot his by marking this page as orphan
2017-03-11 14:30:26 +01:00