Python Forum
Is there a good tutorial on installing Python correctly on Windows?
Thread Rating:
  • 0 Vote(s) - 0 Average
  • 1
  • 2
  • 3
  • 4
  • 5
Is there a good tutorial on installing Python correctly on Windows?
#5
I have tutorial here,installer(Windows) that Python use now has been the same since Python 3.6.

(Aug-27-2022, 06:42 PM)CynthiaMoore Wrote: Where should the code be installed? I read comments about a long path and a shorter (better) path. I was under the impression that Windows is now careful to separate code from data. Isn't all software supposed to go in C:\Program Files?
I do not like the long default Path that Python install to(hidden bye default):
C:\Users\(your name)\AppData\Local\Programs\Python\Python310
Can change install path folder under install(Customize installation ) look at my tutorial,i keep it simple with C:\python310
Can of course choose C:\Program Files\python310.
(Aug-27-2022, 06:42 PM)CynthiaMoore Wrote: Isn't all software supposed to go in C:\Program Files?
No,aslo use AppData folder for many install.
AppData is the way Python has choose,i understand the reason(some security reason too).
Also create trouble for People we have many Threads about on this forum,
is natural that People want look at where Python is installed and the files it has.
(Aug-27-2022, 06:42 PM)CynthiaMoore Wrote: Do I need a separate folder for each Python release?
Yes always install to separate folders.
It's most easy to have Windows point to Environment Variables Path the Python version that use most.
There also py(that comes with Python) that can easy access all version from python.org.
# Version i have installed.
E:\div_code
λ py --list
Installed Pythons found by py Launcher for Windows
 -3.10-64 *
 -3.9-64
 -3.7-32
 -3.6-32
 -3.4-32
 -2.7-32


# Access the dead one
E:\div_code
λ py -2.7-32 -V
Python 2.7.9

#Just <py> always the lasted install
E:\div_code
λ py -V
Python 3.10.5

# For all commands
E:\div_code
λ py --help
I have lot of stuff install like Anaconda,Miniconda,PyPy,Winpython...ect as i help and test out installation problem People have on this forum.
It's not a problem with conflicts if just understand the basic of how Windows works and see Python trough Environment Variables Path.
Reply


Messages In This Thread
RE: Is there a good tutorial on installing Python correctly on Windows? - by snippsat - Aug-31-2022, 12:47 PM

Possibly Related Threads…
Thread Author Replies Views Last Post
  [Basic] Basic Python Tutorial (Playlist) coffeejunkie34 0 908 Sep-28-2023, 12:18 PM
Last Post: coffeejunkie34
  Complete Python Tutorial jamessidis 2 5,308 Dec-04-2020, 07:48 PM
Last Post: khalifa
  [Basic] Python Tutorial for Beginners MK_CodingSpace 0 2,236 Dec-03-2020, 09:43 PM
Last Post: MK_CodingSpace
  Python Scrapy Tutorial Knight18 0 3,981 Oct-19-2020, 04:56 PM
Last Post: Knight18
  [Basic] The ‘Pythonic’ Python Tutorial! TheMachinePreacher 5 8,182 Mar-12-2020, 09:20 PM
Last Post: DimaBereza
  12 mini games python tutorial series ninedeadeyes 2 2,480 Feb-16-2020, 11:18 PM
Last Post: ninedeadeyes
  [Basic] Python Tutorial for Beginners in One Lesson (98 minutes) artur_m 0 4,061 Jan-23-2020, 09:15 AM
Last Post: artur_m
  Complete Python 3 Tutorial Series KodeBlog 0 5,207 Sep-06-2019, 10:00 AM
Last Post: KodeBlog
  Tutorial for Python, Flask > data into a form Ecniv 1 2,451 May-01-2019, 07:49 PM
Last Post: Larz60+
  Python tutorial on learning & creating your own LRU Cache :) ncorbuk 0 3,525 Jan-26-2019, 08:28 PM
Last Post: ncorbuk

Forum Jump:

User Panel Messages

Announcements
Announcement #1 8/1/2020
Announcement #2 8/2/2020
Announcement #3 8/6/2020