-2

I recently installed Anaconda python on my chromebook to utilize python adn test some of my scripts out, but I'm a little stumped of how can I download libraries and import them?

1 Answers1

-1

When you are in the anaconda environment you can use pip install <library> to install libraries, you can search for them with pip search <library>. When they are installed with pip you can import <library> them like usual.

mrfred489
  • 80
  • 1
  • 7