conda 756 B

12345678910111213
  1. #!/croot/conda_1689269889729/_h_env_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_p/bin/python
  2. # -*- coding: utf-8 -*-
  3. import sys
  4. # Before any more imports, leave cwd out of sys.path for internal 'conda shell.*' commands.
  5. # see https://github.com/conda/conda/issues/6549
  6. if len(sys.argv) > 1 and sys.argv[1].startswith('shell.') and sys.path and sys.path[0] == '':
  7. # The standard first entry in sys.path is an empty string,
  8. # and os.path.abspath('') expands to os.getcwd().
  9. del sys.path[0]
  10. if __name__ == '__main__':
  11. from conda.cli import main
  12. sys.exit(main())