Conda usage

Conda

What is conda? Conda is a package version management system for python project. For example you can set python running version to 3.7 while running oaas and then set python version to 3.11 in anohter env while running another python project.

Install specific version of packge The reason we need to do this is that some whl files requires specific version of python to work.

conda install python=3.7

Create conda workspace for one project

conda create --name <my-env> python=<version>

Activate conda env

conda activate <my-env>



Enjoy Reading This Article?

Here are some more articles you might like to read next:

  • Learning-based memory allocation for C++ server workloads summary
  • my question:
  • Binary search algorithm variant
  • Docker Rocksdb build
  • Difference between Dockerfile and Docker Compose