The following is what I have done. I need some validation in order to know if I did the challenge correctly in order to continue with the eBook, any help with this matter will be appreciated.
command: conda create -n tfenv --clone mlenv
command: activate tfenv
command: install -U tensorflow
command: pip install -U tfcoreml
command: conda list
shows that tensorflow 1.13.1 pypi_0 pypi was installed. Does it suppose to be pypi or pip?
command: conda list coremltools
Shows that coremltools 2.1.0 pypi_0 pypi was installed.
Question 1: Did I cloned the environment correctly?
Question 2: Every package that has been installed in that environmet (turienv) will be installed and contained or encapsulated in that environment alone?
Quetion 3: If I delete an environment (turienv) from my computer, every package that was installed in that environment, every action that was done in that environment will be deleted leaving no trace of whatever was installed or done in that environment?
Question 4: If I delete Anaconda from my computer, will the environments that I had created will be deleted as well?
Question 5: How to delete just turienv so I can recreate that environment again? I’m asking for this because I would like to do chapter 4 again to make sure that everything is installed correctly.
Thank you!!!