2

So this question is pretty easy, but I didn't find a great answer. In my program, I want to import the OS package using: import os. Well, how can I import this package using the anaconda prompt? I tried conda install os and pip install os and it didn't work. Can anyone help me?

Luan Souza
  • 159
  • 1
  • 1
  • 11

1 Answers1

5

os is already installed with your python package. You just have to import it into your python files, you can do this by import os.

Vaibhav
  • 484
  • 4
  • 7