2

I have Python27 and Python33 folders. Can I move these folders into my Program Files folder or will this cause problems?enter image description here

Jeshurun
  • 22,940
  • 6
  • 79
  • 92
user3179229
  • 215
  • 1
  • 3
  • 7
  • A better question might be, is the risk of mangling something important and not being able to get things working right again worth whatever benefit having those folders in Program Files might give? Why do you need those folders in Program Files? – user2357112 Feb 09 '14 at 08:58
  • 2
    Because I don't want clutter in my C drive, I want all my programs located in my Program Files folder! – user3179229 Feb 09 '14 at 09:03
  • Some installation programs and utilities have problems with embedded spaces in directory names in the path. You could argue that they should handle it, but the fact is that some do not. Best to avoid problems rather than invite them and use the default names. – cdarke Feb 09 '14 at 12:30

2 Answers2

1

Simply moving folders will not work.

  • Python file association will not work.
  • .pyc file contains absolute path:
    • You will get old paths in tracebacks.
  • Third-party libraries may have absolute path.

You need to reinstall the interpreter and libraries.

falsetru
  • 357,413
  • 63
  • 732
  • 636
0

Probably not if you update your path variable to reflect the changes

lightandlight
  • 1,345
  • 3
  • 10
  • 24