What should I put in my conda envirnment file to install python-dev?

Viewed 4768

I have conda environment file conda.yml:

name: env

channels:
  - pytorch

dependencies:
  - python=3.7.*
  - python-dev
  - python3-distutils

But the line - python-dev and python3-distutils does not work. What should I put to get the python development tools?

0 Answers
Related