i am trying to install pyYAML on python 3.9.2 (64bit), but not able to find the right link from where i can download the same. please help...
Asked
Active
Viewed 881 times
-1
-
Welcome to StackOverflow! Please check out [How to Ask](https://stackoverflow.com/help/how-to-ask) and create a [Minimal, Reproducible Example](https://stackoverflow.com/help/minimal-reproducible-example) and revise your question – Parzival Mar 30 '21 at 05:47
1 Answers
1
Once you have Python installed, you generally install library packages using a command-line tool called pip
, which takes care of downloading the package for you.
As documented, this should work:
pip install pyyaml

Burt_Harris
- 6,415
- 2
- 29
- 64