79662779

Date: 2025-06-11 23:54:00
Score: 0.5
Natty:
Report link
  1. Install miniconda (a minimal version of conda) following instructions in this link. You can do it as a regular user, no sudo needed.

  2. conda init bash and relogin (or source) to add conda to your PATH.

  3. conda create -n env_name python=3.10

  4. conda activate env_name

Now you can install packages with conda install or pip install, but better to stick to one method.

Conda is really cool piece of software - it combines python version management, virtual environment and package installing.

Reasons:
  • Blacklisted phrase (1): this link
  • Has code block (-0.5):
Posted by: hans