()
| 111 | |
| 112 | @staticmethod |
| 113 | def return_profile(): |
| 114 | if os.path.exists('/root/.bash_profile'): |
| 115 | return '/root/.bash_profile' |
| 116 | if os.path.exists('/root/.bashrc'): |
| 117 | return '/root/.bashrc' |
| 118 | fd = open('/root/.bashrc', mode="w", encoding="utf-8") |
| 119 | fd.close() |
| 120 | return '/root/.bashrc' |
| 121 | |
| 122 | # ptah python安装路径 |
| 123 | def __init__(self, bin_path: str, version: str, env_type: str, **kwargs): |
no test coverage detected