[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[HTCondor-users] Starting personal-pool via conda HTCondor install



Hi All,

I am trying to run a python Personal Pool on my laptop and am getting the error below when starting to start said pool. My OS is the WSL2 (ubuntu) on a Windows box. The software was installed using the miniconda command `conda create -n htcondor htcondor=3.9.10`. The pool directory seems to have been successfully created but based on the error message, something related to condor_master is missing from the setup.

Cheers,
Matt


------------------------------------------------------------------------------------------
>>> pool = PersonalPool(local_dir = Path.cwd() / "personal-condor")
>>> pool
PersonalPool(local_dir=./personal-condor, state=INITIALIZED)
>>> pool.start()
Traceback (most recent call last):
  File "<stdin>", line 1, in <module>
  File "/home/mtwest/miniconda/envs/htcondor/lib/python3.9/site-packages/htcondor/personal.py", line 112, in wrapper
    return func(self, *args, **kwargs)
  File "/home/mtwest/miniconda/envs/htcondor/lib/python3.9/site-packages/htcondor/personal.py", line 290, in start
    self._start_condor()
  File "/home/mtwest/miniconda/envs/htcondor/lib/python3.9/site-packages/htcondor/personal.py", line 112, in wrapper
    return func(self, *args, **kwargs)
  File "/home/mtwest/miniconda/envs/htcondor/lib/python3.9/site-packages/htcondor/personal.py", line 414, in _start_condor
    self.condor_master = subprocess.Popen(
  File "/home/mtwest/miniconda/envs/htcondor/lib/python3.9/subprocess.py", line 947, in __init__
    self._execute_child(args, executable, preexec_fn, close_fds,
  File "/home/mtwest/miniconda/envs/htcondor/lib/python3.9/subprocess.py", line 1819, in _execute_child
    raise child_exception_type(errno_num, err_msg, err_filename)
FileNotFoundError: [Errno 2] No such file or directory: 'condor_master'