Answers for "in what environment does conda install its packages"

29

creating a new enviroment in conda

conda create -n myenv python=3.6
Posted by: Guest on February-20-2020
3

conda environment details

conda list
Posted by: Guest on July-26-2020
0

installing required libraries in conda environment

python3 -m pip install -r requirements.txt
## enter the name of all the libraries in requirements.txt file which looks like:
requests==2.18.4
google-auth==1.1.0
matplotlib
numpy
Posted by: Guest on June-14-2021

Code answers related to "in what environment does conda install its packages"

Python Answers by Framework

Browse Popular Code Answers by Language