I am trying to execute a .bat
file for creating an environment in conda
and I am using the following script:
set HTTPS_PROXY=<some_value> #will be setting some value
set HTTPS_PROXY=<some_vale> #will be setting some value
conda create -n SATENV python=3.6
activate SATENV
set HTTPS_PROXY=<some_value> #will be setting some value
set HTTPS_PROXY=<some_vale> #will be setting some value
pip install -r requirements.txt
python -m spacy download en
python -m nltk.downloader stopwords
conda deactivate
python -m ipykernel install --user --name SATENV --display-name "SATENV"
In line number three conda create -n SATENV python=3.6
the batch script expects a user input (yes or no) to proceed for installing the new packages and as soon as the user responds, line three executes and the batch file stops executing other lines. Any leads on this will be really helpful.
Thanks in advance.