-
Notifications
You must be signed in to change notification settings - Fork 20
/
addsystem.py
82 lines (62 loc) · 1.88 KB
/
addsystem.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
#!/usr/bin/python
from __future__ import print_function
import os
pwd = os.getcwd() # get the current location
# different files for Linux and Mac
import platform
if platform.system()=="Linux":
bashrc = os.environ["HOME"]+"/.bashrc" # path to .bashrc
print("Detected Linux system")
f = open(bashrc).read() # read bashrc
else:
# Michael's fix for Mac
f = ''
for profileString in ["/.bash_profile", "/.bash_login","/.profile"]:
bashrc = os.environ["HOME"]+profileString # path to .bashrc
try:
print(profileString)
f = open(bashrc).read() # read bashrc
break
except FileNotFoundError:
pass
print("Detected Mac system")
print("Adding DMRGROOT to your ",bashrc)
route = "\n###############################\n"
route += "# Added by dmrgpy\n"
route += "###############################\n"
route += " export DMRGROOT=\""+pwd+"/src\"\n"
route += "###############################\n"
open(bashrc,"w").write(f+route) # write in the bashrc
print("Added \n"+route+"\n route to ",bashrc)
####!/usr/bin/python
###from __future__ import print_function
###import os
###
###
###pwd = os.getcwd() # get the current location
###
#### different files for Linux and Mac
###import platform
###if platform.system()=="Linux":
### bashrc = os.environ["HOME"]+"/.bashrc" # path to .bashrc
### print("Detected Linux system")
###else:
### bashrc = os.environ["HOME"]+"/.bash_profile" # path to .bashrc
### print("Detected Mac system")
###print("Adding DMRGROOR to your ",bashrc)
###
###route = "\n###############################\n"
###route += "# Added by dmrgpy\n"
###route += "###############################\n"
###route += " export DMRGROOT=\""+pwd+"/src\"\n"
###route += "###############################\n"
###
###
###f = open(bashrc).read() # read bashrc
###open(bashrc,"w").write(f+route) # write in the bashrc
###
###print("Added \n"+route+"\n route to ",bashrc)
###
###
###
###