I have the following problem: Calling
conda env create environment.yml
where .yml file contains:
name: my_env
dependencies:
- pip:
- -r file:requirements.txt
And I got an error
Microsoft Visual C++ 14.0 is required. Get it with "Build Tools for Visual Studio"
For almost every package I need to install. VC++ Build tools are definetely installed and every single package from requirements.txt can be installed with either conda install or pip install without any problems whilst they can't be installed with create env as described above. What is the problem?