shell script within Conda env can't execute mkdir
shell script within Conda env can't execute mkdir We are on an Ubuntu system running conda. Within an environment (python2, pandas, other packages) we are trying to run a shell script that: 1. creates dir (mkdir) 2. runs executables the path to which are in PATH (.bashrc) Neither of these are working, and I imagine is a config error on our part. Here are the errors: mkdir: cannot create directory ‘ResultsSparCC/Resamplings2’: No such file or directory mkdir: cannot create directory ‘ResultsSparCC/Bootstraps’: No such file or directory ./sparccWrapper.sh: line 31: ResultsSparCC/sparcc.log: No such file or directory Traceback (most recent call last): File "/home/charlesh/binf/src/sparcc/MakeBootstraps.py", line 9, in <module> from analysis_methods import permute_w_replacement File "/home/binf/src/sparcc/analysis_methods.py", line 7, in <module> from pandas import DataFrame as DF ImportError: No module named pandas However, pandas is installed i...